Skip to content

Separates frost oil into coldsauce and frost oil #34458

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ reagent-desc-bbq-sauce = Hand wipes not included.
reagent-name-cornoil = corn oil
reagent-desc-cornoil = Corn oil, A delicious oil used in cooking. Made from corn.

reagent-name-frostoil = frostoil
reagent-desc-frostoil = Leaves the tongue numb in its passage.
reagent-name-coldsauce = coldsauce
reagent-desc-coldsauce = Leaves the tongue numb in its passage.

reagent-name-horseradish-sauce = horseradish sauce
reagent-desc-horseradish-sauce = Smelly horseradish sauce.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ reagent-desc-oil = Used by chefs to cook.

reagent-name-capsaicin-oil = Capsaicin Oil
reagent-desc-capsaicin-oil = Capsaicin Oil is the ingredient found in different types of hot peppers.

reagent-name-frostoil = Frost Oil
reagent-desc-frostoil = Frost Oil is the ingredient found in chilly peppers, a rare pepper mutation.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
food:
maxVol: 10
reagents:
- ReagentId: Frostoil
- ReagentId: Coldsauce
Quantity: 10
- type: Icon
state: packet-frostoil
Expand Down Expand Up @@ -375,7 +375,7 @@
solutions:
food:
reagents:
- ReagentId: Frostoil
- ReagentId: Coldsauce
Quantity: 30
- type: Sprite
layers:
Expand Down
18 changes: 9 additions & 9 deletions Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@
color: darkred
recognizable: true

- type: reagent
id: Coldsauce
name: reagent-name-coldsauce
group: Foods
desc: reagent-desc-coldsauce
physicalDesc: reagent-physical-desc-cold
flavor: cold
color: skyblue

- type: reagent
id: Cornoil
name: reagent-name-cornoil
Expand All @@ -28,15 +37,6 @@
color: yellow
recognizable: true

- type: reagent
id: Frostoil
name: reagent-name-frostoil
group: Foods
desc: reagent-desc-frostoil
physicalDesc: reagent-physical-desc-cold
flavor: cold
color: skyblue

- type: reagent
id: HorseradishSauce
name: reagent-name-horseradish-sauce
Expand Down
19 changes: 19 additions & 0 deletions Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,22 @@
- !type:AdjustReagent
reagent: Nutriment
amount: 0.1

- type: reagent
id: Frostoil
name: reagent-name-frostoil
group: Foods
desc: reagent-desc-frostoil
physicalDesc: reagent-physical-desc-cold
flavor: cold
color: skyblue
metabolisms:
Food:
effects:
- !type:AdjustReagent
reagent: Nutriment #Oils enhance nutrition
amount: 0.75
Poison:
effects:
- !type:AdjustTemperature
amount: -250 # thermal energy, not temp
12 changes: 12 additions & 0 deletions Resources/Prototypes/Recipes/Reactions/food.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,18 @@
products:
Hotsauce: 3

- type: reaction
id: CookingColdsauce
reactants:
JuiceTomato:
amount: 1
TableSalt:
amount: 1
Frostoil:
amount: 1
products:
Coldsauce: 3

- type: reaction
id: CookingVinegar
reactants:
Expand Down
Loading