mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
ENH: Add dedicated icons for the various shop modes
This commit is contained in:
parent
9bd2604a32
commit
3f595b896a
5 changed files with 12 additions and 5 deletions
BondageClub
BIN
BondageClub/Icons/ShopBuy.png
Normal file
BIN
BondageClub/Icons/ShopBuy.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 9 KiB |
BIN
BondageClub/Icons/ShopPreview.png
Normal file
BIN
BondageClub/Icons/ShopPreview.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 8.8 KiB |
BIN
BondageClub/Icons/ShopSell.png
Normal file
BIN
BondageClub/Icons/ShopSell.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 9 KiB |
|
@ -773,7 +773,14 @@ var Shop2 = {
|
|||
Coords: [1225, 25, 90, 90],
|
||||
Mode: new Set(["Preview", "Buy", "Sell"]),
|
||||
Run: (time, ...coords) => {
|
||||
DrawButton(...coords, "", "Lime", "Icons/Shop.png", TextGet(`BuyMode${Shop2Vars.Mode}`));
|
||||
switch (Shop2Vars.Mode) {
|
||||
case "Buy":
|
||||
return DrawButton(...coords, "", "Red", `Icons/Shop${Shop2Vars.Mode}.png`, TextGet(`BuyMode${Shop2Vars.Mode}`));
|
||||
case "Sell":
|
||||
return DrawButton(...coords, "", "Green", `Icons/Shop${Shop2Vars.Mode}.png`, TextGet(`BuyMode${Shop2Vars.Mode}`));
|
||||
case "Preview":
|
||||
return DrawButton(...coords, "", "Blue", `Icons/Shop${Shop2Vars.Mode}.png`, TextGet(`BuyMode${Shop2Vars.Mode}`));
|
||||
}
|
||||
},
|
||||
Click: () => {
|
||||
const i = Shop2Consts.BuyModeCycleOrder.indexOf(Shop2Vars.Mode);
|
||||
|
|
|
@ -7,12 +7,12 @@ ClothesModeCosplay,Cosplay
|
|||
ClothesModeNude,Nude
|
||||
ExtendedItemButton,Use item
|
||||
Color,Change item color
|
||||
BuyModePreview,Preview
|
||||
BuyModeSell,Sell
|
||||
BuyModeBuy,Buy
|
||||
BuyModePreview,Shope mode: Preview
|
||||
BuyModeSell,Shope mode: Sell
|
||||
BuyModeBuy,Shope mode: Buy
|
||||
InputSearch,Filter by item name
|
||||
GroupSelectHeader,Filter by item group
|
||||
GroupSelectCollapse,Show group filter
|
||||
GroupSelectCollapse,Show item group filter
|
||||
GroupSelectAll,Select All
|
||||
GroupSelectNone,Select None
|
||||
MaleOnly,male-only
|
||||
|
|
|
Loading…
Add table
Reference in a new issue