Add cup ramen and sinks (#6403)

Co-authored-by: fishfish458 <fishfish458>
This commit is contained in:
Fishfish458
2022-02-01 00:16:49 -06:00
committed by GitHub
parent 1466256fa2
commit d0b37c0872
8 changed files with 140 additions and 24 deletions

View File

@@ -4,7 +4,10 @@
animationDuration: 0.5
spriteName: snack
startingInventory:
FoodSnackRaisins: 2
FoodSnackChocolate: 2
FoodSnackPopcorn: 2
FoodSnackSyndi: 2
FoodSnackRaisins: 3
FoodSnackChocolate: 3
FoodSnackPopcorn: 3
FoodSnackSyndi: 3
DrinkRamen: 3
DrinkHellRamen: 2

View File

@@ -861,16 +861,6 @@
- type: Sprite
sprite: Objects/Consumable/Drinks/grogglass.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkHell
name: hell ramen
description: The noodles are boiled, the flavors are artificial, just like being back in school.
components:
- type: Drink
- type: Sprite
sprite: Objects/Consumable/Drinks/hell.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkHippiesDelightGlass
@@ -1423,16 +1413,6 @@
- type: Sprite
sprite: Objects/Consumable/Drinks/pwineglass.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkRamen
name: cup ramen
description: Just add 10ml water, self heats! A taste that reminds you of your school years.
components:
- type: Drink
- type: Sprite
sprite: Objects/Consumable/Drinks/ramen.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkRedMeadGlass
@@ -2108,3 +2088,37 @@
- type: Drink
- type: Sprite
sprite: Objects/Consumable/Drinks/shake-white.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkRamen
name: cup ramen
description: Just add 10ml water, self heats! A taste that reminds you of your school years
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 50
reagents:
- ReagentId: DryRamen
Quantity: 30
- type: Sprite
sprite: Objects/Consumable/Drinks/ramen.rsi
- type: entity
parent: DrinkGlassBase
id: DrinkHellRamen
name: hell ramen
description: Just add 10ml water, self heats! Super spicy flavor.
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 50
reagents:
- ReagentId: DryRamen
Quantity: 30
- ReagentId: CapsaicinOil
Quantity: 5
- type: Sprite
sprite: Objects/Consumable/Drinks/ramen.rsi

View File

@@ -0,0 +1,44 @@
- type: entity
name: sink
id: SinkEmpty
suffix: Empty
description: The faucets have been tightened to the maximum possible torque but are still known to drip.
placement:
mode: SnapgridCenter
components:
- type: Clickable
- type: InteractionOutline
- type: Sprite
sprite: Structures/Furniture/sink.rsi
state: sink
netsync: false
- type: SolutionContainerManager
solutions:
tank:
maxVol: 500
- type: DrainableSolution
solution: tank
- type: ReagentTank
- type: entity
name: sink
id: Sink
parent: SinkEmpty
suffix: Water
components:
- type: SolutionContainerManager
solutions:
tank:
reagents:
- ReagentId: Water
Quantity: 500
- type: entity
name: wide sink
id: SinkWide
parent: Sink
components:
- type: Sprite
sprite: Structures/Furniture/sink.rsi
state: sink_wide
netsync: false

View File

@@ -237,3 +237,29 @@
plantMetabolism:
- !type:PlantAdjustWater
amount: 1
- type: reagent
id: DryRamen
name: dry ramen
parent: BaseDrink
desc: Dry noodles and salt.
physicalDesc: wormy
color: "#664300"
metabolisms:
Food:
effects:
- !type:SatiateHunger
factor: 1
- type: reagent
id: HotRamen
name: hot ramen
parent: BaseDrink
desc: Hot noodles.
physicalDesc: wormy
color: "#664300"
metabolisms:
Food:
effects:
- !type:SatiateHunger
factor: 4

View File

@@ -551,3 +551,13 @@
amount: 1
products:
WhiteRussian: 3
- type: reaction
id: HotRamen
reactants:
DryRamen:
amount: 3
Water:
amount: 1
products:
HotRamen: 3

View File

@@ -0,0 +1,19 @@
{
"version": 1,
"size": {
"x": 32,
"y": 32
},
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/f01afc7edd39b28dd718407d5bbfca3a5dfe995f#diff-378d1b8f0f0a73185e7c82e4ccfdb65102561992a7abb306090ce851f8419780",
"states": [
{
"name": "sink",
"directions": 4
},
{
"name": "sink_wide",
"directions": 4
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB