Garlic and vinaigrette (#14221)

This commit is contained in:
Fluffiest Floofers
2023-03-06 02:50:08 +01:00
committed by GitHub
parent 6c68c13a3c
commit ddfb813693
23 changed files with 148 additions and 3 deletions

View File

@@ -95,6 +95,7 @@ flavor-complex-bungo = like bungo
flavor-complex-raisins = like dried grapes
flavor-complex-orange = like oranges
flavor-complex-watermelon = like watermelon
flavor-complex-garlic = like garlic
## Complex foodstuffs (cooked foods, joke flavors, etc)

View File

@@ -25,6 +25,9 @@ reagent-desc-ketchunaise = So-called Russian dressing, popular among Space Ameri
reagent-name-mayo = mayonnaise
reagent-desc-mayo = Creamy sauce, made from oil, egg, and some (edible) acid.
reagent-name-vinaigrette = vinaigrette
reagent-desc-vinaigrette = A basic salad dressing made with oil, vinegar and seasoning.
reagent-name-soysauce = soy sauce
reagent-desc-soysauce = A salty soy-based flavoring.

View File

@@ -13,6 +13,8 @@ seeds-carrots-name = carrot
seeds-carrots-display-name = carrots
seeds-cabbage-name = cabbage
seeds-cabbage-display-name = cabbages
seeds-garlic-name = garlic head
seeds-garlic-display-name = garlic heads
seeds-lemon-name = lemon
seeds-lemon-display-name = lemon trees
seeds-pineapple-name = pineapple

View File

@@ -132,7 +132,7 @@
sprite: Objects/Specific/Service/vending_machine_restock.rsi
state: base
product: CrateVendingMachineRestockSeedsFilled
cost: 2200
cost: 2300
category: Hydroponics
group: market

View File

@@ -81,6 +81,8 @@
amount: 1
- id: CabbageSeeds
amount: 1
- id: GarlicSeeds
amount: 1
- id: ChanterelleSeeds
amount: 1
- id: PotatoSeeds

View File

@@ -13,6 +13,7 @@
EggplantSeeds: 5
EggySeeds: 5
GalaxythistleSeeds: 3
GarlicSeeds: 3
LemonSeeds: 5
LingzhiSeeds: 3
OatSeeds: 5

View File

@@ -477,6 +477,10 @@
id: FoodBreadGarlicSlice
description: Alas, it is limited.
components:
- type: FlavorProfile
flavors:
- bread
- garlic
- type: Sprite
layers:
- state: garlic-slice

View File

@@ -270,6 +270,31 @@
- type: Produce
seedId: cabbage
- type: entity
name: garlic
parent: FoodProduceBase
id: FoodGarlic
description: Delicious, but with a potentially overwhelming odor.
components:
- type: FlavorProfile
flavors:
- garlic
- type: SolutionContainerManager
solutions:
food:
maxVol: 18
reagents:
- ReagentId: Nutriment
Quantity: 10
- ReagentId: Vitamin
Quantity: 4
- ReagentId: Allicin
Quantity: 4
- type: Sprite
sprite: Objects/Specific/Hydroponics/garlic.rsi
- type: Produce
seedId: garlic
- type: entity
name: lemon
parent: FoodProduceBase

View File

@@ -235,6 +235,8 @@
Quantity: 8
- ReagentId: Vitamin
Quantity: 2
- ReagentId: Allicin
Quantity: 2
# Tastes like spicy cabbage, carrots.
- type: entity

View File

@@ -63,6 +63,16 @@
- type: Sprite
sprite: Objects/Specific/Hydroponics/cabbage.rsi
- type: entity
parent: SeedBase
name: packet of garlic seeds
id: GarlicSeeds
components:
- type: Seed
seedId: garlic
- type: Sprite
sprite: Objects/Specific/Hydroponics/garlic.rsi
- type: entity
parent: SeedBase
name: packet of lemon seeds

View File

@@ -653,3 +653,8 @@
id: watermelon
flavorType: Complex
description: flavor-complex-watermelon
- type: flavor
id: garlic
flavorType: Complex
description: flavor-complex-garlic

View File

@@ -300,6 +300,34 @@
Max: 4
PotencyDivisor: 25
- type: seed
id: garlic
name: seeds-garlic-name
noun: seeds-noun-seeds
displayName: seeds-garlic-display-name
plantRsi: Objects/Specific/Hydroponics/garlic.rsi
productPrototypes:
- FoodGarlic
lifespan: 25
maturation: 3
production: 5
yield: 6
potency: 25
growthStages: 3
chemicals:
Nutriment:
Min: 1
Max: 10
PotencyDivisor: 10
Vitamin:
Min: 1
Max: 4
PotencyDivisor: 25
Allicin:
Min: 1
Max: 8
PotencyDivisor: 25
- type: seed
id: apple
name: seeds-apple-name

View File

@@ -79,6 +79,15 @@
flavor: sour
color: "#f9f5e5"
- type: reagent
id: Vinaigrette
name: reagent-name-vinaigrette
group: Foods
desc: reagent-desc-vinaigrette
physicalDesc: reagent-physical-desc-sour
flavor: sour
color: "#efdaae"
- type: reagent
id: Soysauce
name: reagent-name-soysauce

View File

@@ -232,6 +232,15 @@
FoodBreadPlainSlice: 1
FoodFlyAmanita: 1
- type: microwaveMealRecipe
id: RecipeGarlicBread
name: garlic bread slice recipe
result: FoodBreadGarlicSlice
time: 5
solids:
FoodBreadPlainSlice: 1
FoodGarlic: 1
#Pizzas
- type: microwaveMealRecipe
id: RecipeMargheritaPizza
@@ -988,8 +997,7 @@
result: FoodSaladColeslaw
time: 5
reagents:
Vinegar: 5
OilOlive: 5
Vinaigrette: 5
solids:
FoodBowlBig: 1
FoodOnionRed: 1
@@ -1020,6 +1028,7 @@
FoodBowlBig: 1
FoodCarrot: 1
FoodCabbage: 1
FoodGarlic: 1
# NOT ACTUAL FOOD

View File

@@ -167,6 +167,18 @@
products:
Vinegar: 10
- type: reaction
id: CookingVinaigrette
reactants:
Vinegar:
amount: 5
OilOlive:
amount: 5
Blackpepper:
amount: 5
products:
Vinaigrette: 15
- type: reaction
id: CreateMeatball
impact: Low

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,32 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from https://github.com/tgstation/tgstation/commit/9f2e55e83cb93e7124d06c705d1942dfec63c93a",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "dead"
},
{
"name": "harvest"
},
{
"name": "produce"
},
{
"name": "seed"
},
{
"name": "stage-1"
},
{
"name": "stage-2"
},
{
"name": "stage-3"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB