revamp getmore inventory (#19372)

This commit is contained in:
potato1234_x
2023-08-24 07:49:25 +10:00
committed by GitHub
parent eedcaea5d3
commit 149e58d30a
10 changed files with 76 additions and 5 deletions

View File

@@ -3,8 +3,10 @@
startingInventory: startingInventory:
FoodSnackRaisins: 3 FoodSnackRaisins: 3
FoodSnackChocolate: 3 FoodSnackChocolate: 3
FoodSnackPopcorn: 3 FoodSnackCnDs: 3
FoodSnackPistachios: 3
FoodSnackSus: 3
FoodSnackSemki: 3
emaggedInventory:
FoodSnackSyndi: 3 FoodSnackSyndi: 3
DrinkRamen: 3
DrinkHellRamen: 2

View File

@@ -21,6 +21,7 @@
- FoodPacketChipsTrash - FoodPacketChipsTrash
- FoodPacketChocolateTrash - FoodPacketChocolateTrash
- FoodPacketChowMeinTrash - FoodPacketChowMeinTrash
- FoodPacketCnDsTrash
- FoodPacketDanDanTrash - FoodPacketDanDanTrash
- FoodPacketEnergyTrash - FoodPacketEnergyTrash
- FoodPacketPistachioTrash - FoodPacketPistachioTrash

View File

@@ -42,6 +42,21 @@
- type: Food - type: Food
trash: FoodPacketBoritosTrash trash: FoodPacketBoritosTrash
- type: entity
name: C&Ds
parent: FoodSnackBase
id: FoodSnackCnDs
description: Legally, we cannot say that these won't melt in your hands.
components:
- type: FlavorProfile
flavors:
- chocolate
- type: Sprite
state: cnds
- type: Item
- type: Food
trash: FoodPacketCnDsTrash
- type: entity - type: entity
name: cheesie honkers name: cheesie honkers
parent: FoodSnackBase parent: FoodSnackBase
@@ -153,6 +168,22 @@
state: energybar-open state: energybar-open
- type: Item - type: Item
- type: entity
name: sweetie's pistachios
parent: FoodSnackBase
id: FoodSnackPistachios
description: Sweeties's name-brand pistachios. probably won't give you diseases. Probably.
components:
- type: FlavorProfile
flavors:
- salty
- nutty
- type: Sprite
state: pistachio
- type: Item
- type: Food
trash: FoodPacketPistachioTrash
- type: entity - type: entity
name: popcorn name: popcorn
parent: FoodSnackBase parent: FoodSnackBase
@@ -187,7 +218,22 @@
trash: FoodPacketRaisinsTrash trash: FoodPacketRaisinsTrash
- type: entity - type: entity
name: Sus Jerky name: bob's semki sunflower seeds
parent: FoodSnackBase
id: FoodSnackSemki
description: Proudly produced by the Bob Bobson nutritional corporation. Perfect for spitting at people.
components:
- type: FlavorProfile
flavors:
- nutty
- type: Sprite
state: semki
- type: Item
- type: Food
trash: FoodPacketSemkiTrash
- type: entity
name: sus jerky
parent: FoodSnackBase parent: FoodSnackBase
id: FoodSnackSus id: FoodSnackSus
description: Something about this packet makes you feel incredibly uneasy. Jerky's good though. description: Something about this packet makes you feel incredibly uneasy. Jerky's good though.
@@ -413,6 +459,16 @@
state: boritos-trash state: boritos-trash
- type: Item - type: Item
- type: entity
noSpawn: true
parent: FoodPacketTrash
id: FoodPacketCnDsTrash
name: C&Ds bag
components:
- type: Sprite
state: cnds-trash
- type: Item
- type: entity - type: entity
noSpawn: true noSpawn: true
parent: FoodPacketTrash parent: FoodPacketTrash

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

View File

@@ -1,7 +1,7 @@
{ {
"version": 1, "version": 1,
"license": "CC-BY-SA-3.0", "license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide", "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, chinese from paradise, ticket by peptide, cnds-trash based on boritos-trash and syndicakes modified by potato1234x",
"size": { "size": {
"x": 32, "x": 32,
"y": 32 "y": 32
@@ -63,6 +63,12 @@
"name": "chocolatebar-inhand-left", "name": "chocolatebar-inhand-left",
"directions": 4 "directions": 4
}, },
{
"name": "cnds"
},
{
"name": "cnds-trash"
},
{ {
"name": "cookie_fortune" "name": "cookie_fortune"
}, },
@@ -116,6 +122,9 @@
{ {
"name": "peachtinmaint-open" "name": "peachtinmaint-open"
}, },
{
"name": "pistachio"
},
{ {
"name": "pistachio-trash" "name": "pistachio-trash"
}, },
@@ -139,6 +148,9 @@
{ {
"name": "raisins-trash" "name": "raisins-trash"
}, },
{
"name": "semki"
},
{ {
"name": "semki-trash" "name": "semki-trash"
}, },

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 252 B