Create dalgonacandy

This commit is contained in:
L1s3L 2025-02-01 12:51:13 +10:00 committed by GitHub
parent b8b589bc42
commit b104d6225a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 41 additions and 0 deletions

41
mods/dalgonacandy Normal file
View File

@ -0,0 +1,41 @@
elements.dalgona = {
desc: "Dalgona candy from Squid Game",
color: "#c49543",
behavior: behaviors.WALL,
category: "food",
state: "solid",
isFood: true,
tempHigh: 400,
stateHigh: "smoke",
tempLow: -20,
stateLow: "salted_caramel",
breakInto: "salted_sugar",
};
elements.salted_caramel = {
color: "#c48537",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
isFood: true,
tempHigh: 400,
temp: -20,
stateHigh: "smoke",
tempLow: -50,
stateLow: "candy",
breakInto: "salted_sugar",
};
elements.salted_sugar = {
color: "#fcfcfc",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
isFood: true,
tempHigh: 170,
temp: -20,
stateHigh: "salted_caramel",
};
elements.sugar.reactions.salt = { elem1:"salted_sugar", elem2: null };
elements.caramel.reactions.salt = { elem1:"salted_caramel", elem2: null };
elements.caramel.reactions.baking_soda = { elem1:"dalgona", elem2: null };