From b104d6225aa6751772af7a35d413bbb1f07e152d Mon Sep 17 00:00:00 2001 From: L1s3L Date: Sat, 1 Feb 2025 12:51:13 +1000 Subject: [PATCH] Create dalgonacandy --- mods/dalgonacandy | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 mods/dalgonacandy diff --git a/mods/dalgonacandy b/mods/dalgonacandy new file mode 100644 index 00000000..54472862 --- /dev/null +++ b/mods/dalgonacandy @@ -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 };