diff --git a/mods/greenitemsandmore.js b/mods/greenitemsandmore.js new file mode 100644 index 00000000..ac8947e6 --- /dev/null +++ b/mods/greenitemsandmore.js @@ -0,0 +1,122 @@ +elements.green_apple = { + color: "#2ab54f", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 120, + stateHigh: "ash", + breakInto: "juice", + breakIntoColor: "#5fba65", + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#86b867", color2: "#70b867" }, + "red_apple": { elem1: "mixed_apples", elem2: "mixed_apples" }, + } +}; +elements.red_apple = { + color: "#e83838", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 120, + stateHigh: "ash", + breakInto: "juice", + breakIntoColor: "#c95555", + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#d65151", color2: "#d65152" }, + "green_apple": { elem1: "mixed_apples", elem2: "mixed_apples" }, + } +}; +elements.mixed_apples = { + color: ["#d13030", "#bf3d3d", "#369e3d", "#39b359"], + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 120, + stateHigh: "ash", + breakInto: "juice", + breakIntoColor: ["#ba6859", "#71a676"], + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#c47264", color2: "#66bd57"}, + "sugar": { elem1: "mixed_sweet_apples", elem2: "mixed_sweet_apples" }, + } +}; +elements.mixed_sweet_apples = { + color: ["#d93f3f", "#d45555", "#50b556", "#50cc70"], + behavior: behaviors.POWDER, + category: "states", + state: "solid", + tempHigh: 135, + stateHigh: "ash", + breakInto: "juice", + breakIntoColor: ["#ad746a", "#82ba88"], + hidden: true, + reactions: { + "milk": {elem1: "fruit_milk", elem2: "fruit_milk", color1: "#f58989", color2: "#71a162"}, + "flour": {elem1: "apple_pie", elem2: "apple_pie" }, + } +}; +elements.apple_pie = { + color: "#f0b55d", + behavior: behaviors.STURDYPOWDER, + category: "food", + state: "solid", + tempHigh: 156, + stateHigh: "ash", + hidden: true, +}; +elements.pear = { + color: "#3a8c3c", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 120, + stateHigh: "ash", + breakInto: "juice", + breakIntoColor: "#5f8f50", + reactions: { + "milk": {elem1: "fruit_milk", elem2: "fruit_milk", color1: "#60c483", color2: "#60c483"}, + } +}; +elements.coconut = { + color: "#8c6d3a", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 166, + stateHigh: "ash", + breakInto: "coconut_flesh", +}; +elements.coconut_flesh = { + color: "#faf4eb", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: 134, + stateHigh: "ash", + hidden: true, + reactions: { + "water": {elem1: "coconut_milk", elem2: "coconut_milk" }, + } +}; + +elements.coconut_milk = { + color: "#f7f5f2", + behavior: behaviors.LIQUID, + category: "liquids", + state: "liquid", + tempHigh: 124, + stateHigh: "steam", + tempLow: -10, + stateLow: "frozen_coconut_milk", + hidden: true, +}; +elements.frozen_coconut_milk = { + color: "#f0fcfc", + behavior: behaviors.WALL, + category: "states", + state: "ice", + tempHigh: -10, + stateHigh: "coconut_milk", + hidden: true, + temp: -20, +}; \ No newline at end of file diff --git a/mods/zonneschijn7.js b/mods/zonneschijn7.js new file mode 100644 index 00000000..a86b9bea --- /dev/null +++ b/mods/zonneschijn7.js @@ -0,0 +1,6 @@ +elements.green_wall = { + color: "#00ff00", + behavior: behaviors.WALL, + category: "land", + state: "solid", +}; \ No newline at end of file