Update 1.1 - soups.js
Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com>
This commit is contained in:
parent
5bcfa3c874
commit
fc02a5fc67
|
|
@ -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,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue