Update 1.1 - soups.js

Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com>
This commit is contained in:
HACKERPRO908 2024-03-04 18:32:41 +00:00 committed by GitHub
parent 5bcfa3c874
commit fc02a5fc67
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 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 = {
color: "#876461",
behavior: behaviors.POWDER,
behavior: behaviors.SUPPORT,
category: "food",
tempHigh: 900,
stateHigh: "salt",
tempHigh: 9000,
stateHigh: "ash",
state: "solid",
reactions: {
"water": { elem1: "null", elem2: "seasoned_water" },
"salt_water": { elem1: "null", elem2: "seasoned_water" },
"water": { elem1: "seasoned_water", elem2: "null" },
"salt_water": { elem1: "seasoned_water", elem2: "null" },
},
density: 2,
density: 3000,
};
elements.seasoned_water = {
color: "#73d627",
behavior: behaviors.LIQUID,
tempHigh: 100,
stateHigh: "steam",
stateHigh: "soup",
tempLow: 0,
stateLow: "ice",
category: "liquids",
@ -88,3 +94,11 @@ elements.seasoned_water = {
stain: -0.9,
extinguish: true
};
elements.soup = {
color: "#e8c238",
behavior: behaviors.LIQUID,
category: "food",
state: "solid",
density: 7000,
};