From 0cd7b154541fe8b49a89ad7ffe63ae47d5a292ec Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 09:36:42 +0100 Subject: [PATCH 1/6] added zonneschijn7.js mod --- mods/zonneschijn7.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mods/zonneschijn7.js 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 From 843e0ada480ed7db35ffa19f2be8265cdf884ea1 Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:19:52 +0100 Subject: [PATCH 2/6] added greenitemsandmore mod mainly adds fruits, also adds some other stuff. --- greenitemsandmore.js | 116 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 greenitemsandmore.js diff --git a/greenitemsandmore.js b/greenitemsandmore.js new file mode 100644 index 00000000..e781e598 --- /dev/null +++ b/greenitemsandmore.js @@ -0,0 +1,116 @@ +elements.green_apple = { + color: "#2ab54f", + behavior: behaviors.POWDER, + category: "food", + state: "solid", + tempHigh: "120", + stateHigh: "ash", + breakInto: "juice", + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "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", + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "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", + reactions: { + "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "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", + hidden: true, + reactions: { + "milk": {elem1: "fruit_milk", elem2: "fruit_milk" }, + "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", + reactions: { + "milk": {elem1: "fruit_milk", elem2: "fruit_milk" }, + } +}; +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, +}; \ No newline at end of file From a07643ff037fbae7fc33d3fb29ed0cb0e48b02b0 Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:33:14 +0100 Subject: [PATCH 3/6] Update: Made frozen coconut milk spawn in on -20 degrees temperature frozen coconut milk now is on -20 degrees celsius when placed. --- greenitemsandmore.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/greenitemsandmore.js b/greenitemsandmore.js index e781e598..bd3e4913 100644 --- a/greenitemsandmore.js +++ b/greenitemsandmore.js @@ -113,4 +113,5 @@ elements.frozen_coconut_milk = { tempHigh: "-10", stateHigh: "coconut_milk", hidden: true, -}; \ No newline at end of file + temp: "-20", +}; From 8074e839a81a4e71ae3f143abc5c68b0fe312b21 Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 13:42:44 +0100 Subject: [PATCH 4/6] Update greenitemsandmore.js (BIG UPDATE) Added colors to the fruits when smashed, also coloring added to the fruits when mixed with milk. --- greenitemsandmore.js | 41 +++++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/greenitemsandmore.js b/greenitemsandmore.js index bd3e4913..f7ca830d 100644 --- a/greenitemsandmore.js +++ b/greenitemsandmore.js @@ -3,11 +3,12 @@ elements.green_apple = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "120", + tempHigh: 120, stateHigh: "ash", breakInto: "juice", + breakIntoColor: "#5fba65", reactions: { - "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#86b867", color2: "#70b867" }, "red_apple": { elem1: "mixed_apples", elem2: "mixed_apples" }, } }; @@ -16,11 +17,12 @@ elements.red_apple = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "120", + tempHigh: 120, stateHigh: "ash", breakInto: "juice", + breakIntoColor: "#c95555", reactions: { - "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#d65151", color2: "#d65152" }, "green_apple": { elem1: "mixed_apples", elem2: "mixed_apples" }, } }; @@ -29,11 +31,12 @@ elements.mixed_apples = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "120", + tempHigh: 120, stateHigh: "ash", breakInto: "juice", + breakIntoColor: ["#ba6859", "#71a676"], reactions: { - "milk": { elem1: "fruit_milk", elem2: "fruit_milk" }, + "milk": { elem1: "fruit_milk", elem2: "fruit_milk", color1: "#c47264", color2: "#66bd57"}, "sugar": { elem1: "mixed_sweet_apples", elem2: "mixed_sweet_apples" }, } }; @@ -42,12 +45,13 @@ elements.mixed_sweet_apples = { behavior: behaviors.POWDER, category: "states", state: "solid", - tempHigh: "135", + tempHigh: 135, stateHigh: "ash", breakInto: "juice", + breakIntoColor: ["#ad746a", "#82ba88"], hidden: true, reactions: { - "milk": {elem1: "fruit_milk", elem2: "fruit_milk" }, + "milk": {elem1: "fruit_milk", elem2: "fruit_milk", color1: "#f58989", color2: "#71a162"}, "flour": {elem1: "apple_pie", elem2: "apple_pie" }, } }; @@ -56,7 +60,7 @@ elements.apple_pie = { behavior: behaviors.STURDYPOWDER, category: "food", state: "solid", - tempHigh: "156", + tempHigh: 156, stateHigh: "ash", hidden: true, }; @@ -65,11 +69,12 @@ elements.pear = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "120", + tempHigh: 120, stateHigh: "ash", - breakInto: "juice", + breakInto: "juice", + breakIntoColor: "#5f8f50", reactions: { - "milk": {elem1: "fruit_milk", elem2: "fruit_milk" }, + "milk": {elem1: "fruit_milk", elem2: "fruit_milk", color1: "#60c483", color2: "#60c483"}, } }; elements.coconut = { @@ -77,7 +82,7 @@ elements.coconut = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "166", + tempHigh: 166, stateHigh: "ash", breakInto: "coconut_flesh", }; @@ -86,7 +91,7 @@ elements.coconut_flesh = { behavior: behaviors.POWDER, category: "food", state: "solid", - tempHigh: "134", + tempHigh: 134, stateHigh: "ash", hidden: true, reactions: { @@ -99,9 +104,9 @@ elements.coconut_milk = { behavior: behaviors.LIQUID, category: "liquids", state: "liquid", - tempHigh: "124", + tempHigh: 124, stateHigh: "steam", - tempLow: "-10", + tempLow: -10, stateLow: "frozen_coconut_milk", hidden: true, }; @@ -110,8 +115,8 @@ elements.frozen_coconut_milk = { behavior: behaviors.WALL, category: "states", state: "ice", - tempHigh: "-10", + tempHigh: -10, stateHigh: "coconut_milk", hidden: true, - temp: "-20", + temp: -20, }; From aafd6b7b98780289bac7e4295a195b593c707895 Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 13:45:55 +0100 Subject: [PATCH 5/6] Delete greenitemsandmore.js deleted bcz it wasnt in mods folder, reuploading --- greenitemsandmore.js | 122 ------------------------------------------- 1 file changed, 122 deletions(-) delete mode 100644 greenitemsandmore.js diff --git a/greenitemsandmore.js b/greenitemsandmore.js deleted file mode 100644 index f7ca830d..00000000 --- a/greenitemsandmore.js +++ /dev/null @@ -1,122 +0,0 @@ -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, -}; From 4a8c3e7184951e1e16c2ef85e5192c3224c545c3 Mon Sep 17 00:00:00 2001 From: zonneschijn7 <127043954+zonneschijn7@users.noreply.github.com> Date: Wed, 10 Jan 2024 13:46:45 +0100 Subject: [PATCH 6/6] reuploadded mod to mods folder this time --- mods/greenitemsandmore.js | 122 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 mods/greenitemsandmore.js 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