Changed produce spills into dynamic from hardcoded. (#19980)

This commit is contained in:
drteaspoon420
2023-09-11 11:16:26 +03:00
committed by GitHub
parent 66c4dfaa8e
commit a7ac4a83c4
4 changed files with 19 additions and 26 deletions

View File

@@ -53,14 +53,13 @@
- !type:PlaySoundBehavior
sound:
collection: desecration
- !type:SpillBehavior
solution: food
- !type:SpawnEntitiesBehavior
spawn:
Eggshells:
min: 1
max: 1
PuddleEgg:
min: 1
max: 2
# Wow double-yolk you're so lucky!
- !type:DoActsBehavior
acts: [ "Destruction" ]

View File

@@ -73,11 +73,8 @@
- !type:PlaySoundBehavior
sound:
collection: desecration
- !type:SpawnEntitiesBehavior
spawn:
PuddleFlour:
min: 1
max: 1
- !type:SpillBehavior
solution: food
- !type:DoActsBehavior
acts: [ "Destruction" ]
- type: TrashOnEmpty
@@ -117,11 +114,8 @@
- !type:PlaySoundBehavior
sound:
collection: desecration
- !type:SpawnEntitiesBehavior
spawn:
PuddleFlour:
min: 1
max: 1
- !type:SpillBehavior
solution: food
- !type:DoActsBehavior
acts: [ "Destruction" ]

View File

@@ -460,8 +460,10 @@
maxVol: 14
reagents:
- ReagentId: Nutriment
Quantity: 10
Quantity: 7
- ReagentId: Vitamin
Quantity: 3
- ReagentId: Water
Quantity: 4
- type: Sprite
sprite: Objects/Specific/Hydroponics/tomato.rsi
@@ -498,11 +500,8 @@
- !type:PlaySoundBehavior
sound:
collection: desecration
- !type:SpawnEntitiesBehavior
spawn:
PuddleTomato:
min: 1
max: 1
- !type:SpillBehavior
solution: food
- !type:DoActsBehavior
acts: [ "Destruction" ]
@@ -1114,11 +1113,8 @@
- !type:PlaySoundBehavior
sound:
collection: desecration
- !type:SpawnEntitiesBehavior
spawn:
PuddleWatermelon:
min: 1
max: 1
- !type:SpillBehavior
solution: food
- !type:DoActsBehavior
acts: [ "Destruction" ]
- type: SliceableFood

View File

@@ -306,9 +306,13 @@
chemicals:
Nutriment:
Min: 1
Max: 10
PotencyDivisor: 10
Max: 7
PotencyDivisor: 14
Vitamin:
Min: 1
Max: 3
PotencyDivisor: 33
Water:
Min: 1
Max: 4
PotencyDivisor: 25