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 - !type:PlaySoundBehavior
sound: sound:
collection: desecration collection: desecration
- !type:SpillBehavior
solution: food
- !type:SpawnEntitiesBehavior - !type:SpawnEntitiesBehavior
spawn: spawn:
Eggshells: Eggshells:
min: 1 min: 1
max: 1 max: 1
PuddleEgg:
min: 1
max: 2
# Wow double-yolk you're so lucky! # Wow double-yolk you're so lucky!
- !type:DoActsBehavior - !type:DoActsBehavior
acts: [ "Destruction" ] acts: [ "Destruction" ]

View File

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

View File

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

View File

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