Added Poppies and Aloe (#6456)

This commit is contained in:
Rane
2022-02-04 18:17:05 -05:00
committed by GitHub
parent 93a553bfc2
commit be867fc3a0
25 changed files with 209 additions and 0 deletions

View File

@@ -17,3 +17,5 @@
TomatoSeeds: 10
TowercapSeeds: 10
WheatSeeds: 10
AloeSeeds: 10
PoppySeeds: 10

View File

@@ -577,3 +577,47 @@
sprite: Objects/Specific/Hydroponics/chili.rsi
- type: Produce
seed: chili
- type: entity
name: aloe
parent: FoodProduceBase
id: FoodAloe
description: A fragrant plant with soothing properties.
components:
- type: SolutionContainerManager
solutions:
food:
maxVol: 12 ##I'm pretty sure this has to match the total of 100 potency yields
reagents:
- ReagentId: Nutriment
Quantity: 2
- ReagentId: Kelotane
Quantity: 10
- type: Sprite
sprite: Objects/Specific/Hydroponics/aloe.rsi
- type: Produce
seed: aloe
- type: Extractable
grindableSolutionName: food
- type: entity
name: poppy
parent: FoodProduceBase
id: FoodPoppy
description: A flower with extracts often used in the production of medicine
components:
- type: SolutionContainerManager
solutions:
food:
maxVol: 12
reagents:
- ReagentId: Nutriment
Quantity: 2
- ReagentId: Bicaridine
Quantity: 10
- type: Sprite
sprite: Objects/Specific/Hydroponics/poppy.rsi
- type: Produce
seed: poppy
- type: Extractable
grindableSolutionName: food

View File

@@ -203,3 +203,25 @@
seed: chili
- type: Sprite
sprite: Objects/Specific/Hydroponics/chili.rsi
- type: entity
parent: SeedBase
name: packet of aloe seeds
description: "Soothing."
id: AloeSeeds
components:
- type: Seed
seed: aloe
- type: Sprite
sprite: Objects/Specific/Hydroponics/aloe.rsi
- type: entity
parent: SeedBase
name: packet of poppy seeds
description: "Do not eat within 72 hours of a drug test."
id: PoppySeeds
components:
- type: Seed
seed: poppy
- type: Sprite
sprite: Objects/Specific/Hydroponics/poppy.rsi

View File

@@ -61,3 +61,15 @@
Piercing: -5
- type: Stack
stackType: Gauze
- type: entity
name: aloe cream
description: A topical cream for burns.
parent: Ointment ##Yes it's a direct reskin
id: AloeCream
components:
- type: Sprite
netsync: false
sprite: Objects/Specific/Hydroponics/aloe.rsi
state: cream

View File

@@ -469,3 +469,51 @@
Min: 1
Max: 10
PotencyDivisor: 10
- type: seed
id: poppy
name: poppy
seedName: poppy
displayName: poppies
plantRsi: Objects/Specific/Hydroponics/poppy.rsi
productPrototypes:
- FoodPoppy
lifespan: 25
maturation: 10
production: 1
yield: 5
potency: 10
growthStages: 3
waterConsumption: 6
chemicals:
Nutriment:
Min: 1
Max: 2
Bicaridine:
Min: 1
Max: 10
PotencyDivisor: 10
- type: seed
id: aloe
name: aloe
seedName: aloe
displayName: aloe
plantRsi: Objects/Specific/Hydroponics/aloe.rsi
productPrototypes:
- FoodAloe
lifespan: 25
maturation: 10
production: 1
yield: 5
potency: 10
growthStages: 5
waterConsumption: 6
chemicals:
Nutriment:
Min: 1
Max: 2
Kelotane:
Min: 1
Max: 10
PotencyDivisor: 10

View File

@@ -495,3 +495,11 @@
time: 10
solids:
LeavesCannabis: 1
- type: microwaveMealRecipe
id: RecipeAloeCream
name: aloe cream recipe
result: AloeCream
time: 10
solids:
FoodAloe: 1