Merge pull request #392 from HACKERPRO908/main

This commit is contained in:
slweeb 2024-03-06 09:28:49 -05:00 committed by GitHub
commit df3cd845ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 7 deletions

View File

@ -4,25 +4,31 @@
// added seasoning // added seasoning
// added seasoned_water // added seasoned_water
// 1.1 update - soup update
// adds soup
// changed seasoning to a SUPPORT behaviour
// seasoned water at high temp is soup
// changed seasoning density
elements.seasoning = { elements.seasoning = {
color: "#876461", color: "#876461",
behavior: behaviors.POWDER, behavior: behaviors.SUPPORT,
category: "food", category: "food",
tempHigh: 900, tempHigh: 9000,
stateHigh: "salt", stateHigh: "ash",
state: "solid", state: "solid",
reactions: { reactions: {
"water": { elem1: "null", elem2: "seasoned_water" }, "water": { elem1: "seasoned_water", elem2: "null" },
"salt_water": { elem1: "null", elem2: "seasoned_water" }, "salt_water": { elem1: "seasoned_water", elem2: "null" },
}, },
density: 2, density: 3000,
}; };
elements.seasoned_water = { elements.seasoned_water = {
color: "#73d627", color: "#73d627",
behavior: behaviors.LIQUID, behavior: behaviors.LIQUID,
tempHigh: 100, tempHigh: 100,
stateHigh: "steam", stateHigh: "soup",
tempLow: 0, tempLow: 0,
stateLow: "ice", stateLow: "ice",
category: "liquids", category: "liquids",
@ -88,3 +94,11 @@ elements.seasoned_water = {
stain: -0.9, stain: -0.9,
extinguish: true extinguish: true
}; };
elements.soup = {
color: "#e8c238",
behavior: behaviors.LIQUID,
category: "food",
state: "solid",
density: 7000,
};