New crops: Berries and Bungo (#19800)

* Add berries

* Berry recipes

* Add bungo fruit

* yml tweaks

* yummy poisonous pits

* Technically it's a seed

* Revert "Technically it's a seed"

This reverts commit be892cf119c1e733ac2922b878aaa476f435152a.

Slapping the seed component onto it led to unforeseen consequences, and I don't want to mess with the seed system for a mostly useless gimmick.

* Revert 2 Electric Boogaloo

This reverts commit 2c4fb34250e9369085d49e730de3dab0e077b687.

* Small rewording

* Cocoa balancing

* Oops
This commit is contained in:
Doru991
2023-09-19 06:29:27 +03:00
committed by GitHub
parent 88ec2aa77c
commit fcfe75a308
35 changed files with 317 additions and 6 deletions

View File

@@ -154,8 +154,7 @@
- type: FlavorProfile
flavors:
- sweet
- banana
- creamy
- berry
- type: Sprite
layers:
- state: tin
@@ -172,6 +171,7 @@
- type: FlavorProfile
flavors:
- sweet
- berry
- type: Sprite
layers:
- state: plain-slice

View File

@@ -1451,3 +1451,84 @@
reagents:
- ReagentId: JuiceGrape
Quantity: 10
- type: entity
name: berries
parent: FoodProduceBase
id: FoodBerries
description: A handful of various types of berries.
components:
- type: FlavorProfile
flavors:
- berry
- type: SolutionContainerManager
solutions:
food:
maxVol: 11
reagents:
- ReagentId: Nutriment
Quantity: 5
- ReagentId: Vitamin
Quantity: 4
- type: Sprite
sprite: Objects/Specific/Hydroponics/berries.rsi
- type: Produce
seedId: berries
- type: Extractable
juiceSolution:
reagents:
- ReagentId: JuiceBerry
Quantity: 10
- type: entity
name: bungo fruit
parent: FoodProduceBase
id: FoodBungo
description: The humble bungo fruit.
components:
- type: FlavorProfile
flavors:
- bungo
- type: Food
trash: FoodBungoPit
- type: SolutionContainerManager
solutions:
food:
maxVol: 20
reagents:
- ReagentId: Nutriment
Quantity: 10
- ReagentId: Enzyme
Quantity: 10
- type: Sprite
sprite: Objects/Specific/Hydroponics/bungo.rsi
- type: Produce
seedId: bungo
- type: entity
name: bungo pit
parent: FoodInjectableBase
id: FoodBungoPit
components:
- type: Sprite
sprite: Objects/Specific/Hydroponics/bungo.rsi
state: pit
- type: Tag
tags:
- Recyclable
- Trash
- type: SolutionContainerManager
solutions:
food:
maxVol: 7
reagents:
- ReagentId: Nutriment
Quantity: 2
- ReagentId: Bungotoxin
Quantity: 5
- type: Extractable
grindableSolutionName: food
- type: Seed
seedId: bungo
- type: SpaceGarbage
- type: BadFood

View File

@@ -477,4 +477,24 @@
seedId: cocoa
- type: Sprite
sprite: Objects/Specific/Hydroponics/cocoa.rsi
- type: entity
parent: SeedBase
name: packet of berry seeds
id: BerrySeeds
components:
- type: Seed
seedId: berries
- type: Sprite
sprite: Objects/Specific/Hydroponics/berries.rsi
- type: entity
parent: SeedBase
name: packet of bungo seeds
description: "Don't eat the pits."
id: BungoSeeds
components:
- type: Seed
seedId: bungo
- type: Sprite
sprite: Objects/Specific/Hydroponics/bungo.rsi