seeds-garlic-display-name = garlic heads
seeds-lemon-name = lemon
seeds-lemon-display-name = lemon trees
+seeds-lime-name = lime
+seeds-lime-display-name = lime trees
+seeds-orange-name = orange
+seeds-orange-display-name = orange trees
seeds-pineapple-name = pineapple
seeds-pineapple-display-name = pineapple plant
seeds-potato-name = potato
sprite: Objects/Specific/Service/vending_machine_restock.rsi
state: base
product: CrateVendingMachineRestockSeedsFilled
- cost: 2500
+ cost: 2700
category: Hydroponics
group: market
amount: 1
- id: LemonSeeds
amount: 1
+ - id: LimeSeeds
+ amount: 1
+ - id: OrangeSeeds
+ amount: 1
- id: OatSeeds
amount: 1
- id: OnionSeeds
GalaxythistleSeeds: 3
GarlicSeeds: 3
LemonSeeds: 5
+ LimeSeeds: 5
LingzhiSeeds: 3
OatSeeds: 5
OnionSeeds: 5
OnionRedSeeds: 5
+ OrangeSeeds: 5
PoppySeeds: 3
PotatoSeeds: 5
RiceSeeds: 5
- ReagentId: JuiceLemon
Quantity: 10
+- type: entity
+ name: lime
+ parent: FoodLemon
+ id: FoodLime
+ description: Cures Space Scurvy, allows you to act like a Space Pirate.
+ components:
+ - type: FlavorProfile
+ flavors:
+ - sour
+ - type: Sprite
+ sprite: Objects/Specific/Hydroponics/lime.rsi
+ - type: Produce
+ seedId: lime
+ - type: Extractable
+ juiceSolution:
+ reagents:
+ - ReagentId: JuiceLime
+ Quantity: 10
+
+- type: entity
+ name: orange
+ parent: FoodLemon
+ id: FoodOrange
+ description: Healthy, very orange.
+ components:
+ - type: FlavorProfile
+ flavors:
+ - orange
+ - type: Sprite
+ sprite: Objects/Specific/Hydroponics/orange.rsi
+ - type: Produce
+ seedId: orange
+ - type: Extractable
+ juiceSolution:
+ reagents:
+ - ReagentId: JuiceOrange
+ Quantity: 10
+
- type: entity
name: pineapple
parent: FoodProduceBase
- type: SolutionContainerManager
solutions:
food:
- maxvol: 15
+ maxvol: 38
reagents:
- ReagentId: Nutriment
- Quantity: 7
+ Quantity: 18
- ReagentId: Vitamin
- Quantity: 5
+ Quantity: 15
# Tastes like sourness, leaves.
- type: entity
- type: Sprite
sprite: Objects/Specific/Hydroponics/lemon.rsi
+- type: entity
+ parent: SeedBase
+ name: packet of lime seeds
+ id: LimeSeeds
+ components:
+ - type: Seed
+ seedId: lime
+ - type: Sprite
+ sprite: Objects/Specific/Hydroponics/lime.rsi
+
+- type: entity
+ parent: SeedBase
+ name: packet of orange seeds
+ id: OrangeSeeds
+ components:
+ - type: Seed
+ seedId: orange
+ - type: Sprite
+ sprite: Objects/Specific/Hydroponics/orange.rsi
+
- type: entity
parent: SeedBase
name: packet of pineapple seeds
Max: 4
PotencyDivisor: 25
+- type: seed
+ id: lime
+ name: seeds-lime-name
+ noun: seeds-noun-seeds
+ displayName: seeds-lime-display-name
+ plantRsi: Objects/Specific/Hydroponics/lime.rsi
+ productPrototypes:
+ - FoodLime
+ harvestRepeat: Repeat
+ lifespan: 55
+ maturation: 6
+ production: 6
+ yield: 4
+ potency: 10
+ idealLight: 8
+ chemicals:
+ Nutriment:
+ Min: 1
+ Max: 5
+ PotencyDivisor: 20
+ Vitamin:
+ Min: 1
+ Max: 4
+ PotencyDivisor: 25
+
+- type: seed
+ id: orange
+ name: seeds-orange-name
+ noun: seeds-noun-seeds
+ displayName: seeds-orange-display-name
+ plantRsi: Objects/Specific/Hydroponics/orange.rsi
+ productPrototypes:
+ - FoodOrange
+ harvestRepeat: Repeat
+ lifespan: 55
+ maturation: 6
+ production: 6
+ yield: 4
+ potency: 10
+ idealLight: 8
+ chemicals:
+ Nutriment:
+ Min: 1
+ Max: 5
+ PotencyDivisor: 20
+ Vitamin:
+ Min: 1
+ Max: 4
+ PotencyDivisor: 25
+
- type: seed
id: pineapple
name: seeds-pineapple-name
name: orange cake recipe
result: FoodCakeOrange
time: 5
- reagents:
- JuiceOrange: 30
solids:
FoodCakePlain: 1
+ FoodOrange: 3
- type: microwaveMealRecipe
id: RecipeLimeCake
name: lime cake recipe
result: FoodCakeLime
time: 5
- reagents:
- JuiceLime: 30
solids:
FoodCakePlain: 1
+ FoodLime: 3
- type: microwaveMealRecipe
id: RecipeCheeseCake
FoodCheeseSlice: 1
FoodCabbage: 1
+- type: microwaveMealRecipe
+ id: RecipeCitrusSalad
+ name: citrus salad recipe
+ result: FoodSaladCitrus
+ time: 5
+ solids:
+ FoodBowlBig: 1
+ FoodOrange: 1
+ FoodLemon: 1
+ FoodLime: 1
+
- type: microwaveMealRecipe
id: RecipeKimchiSalad
name: kimchi salad recipe
--- /dev/null
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "dead"
+ },
+ {
+ "name": "harvest"
+ },
+ {
+ "name": "produce"
+ },
+ {
+ "name": "seed"
+ },
+ {
+ "name": "stage-1"
+ },
+ {
+ "name": "stage-2"
+ },
+ {
+ "name": "stage-3"
+ },
+ {
+ "name": "stage-4"
+ },
+ {
+ "name": "stage-5"
+ },
+ {
+ "name": "stage-6"
+ }
+ ]
+}
--- /dev/null
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "dead"
+ },
+ {
+ "name": "harvest"
+ },
+ {
+ "name": "produce"
+ },
+ {
+ "name": "seed"
+ },
+ {
+ "name": "stage-1"
+ },
+ {
+ "name": "stage-2"
+ },
+ {
+ "name": "stage-3"
+ },
+ {
+ "name": "stage-4"
+ },
+ {
+ "name": "stage-5"
+ },
+ {
+ "name": "stage-6"
+ }
+ ]
+}