From 96a473544ded4d0475041529a67c628b911244d5 Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Thu, 7 Dec 2023 10:50:19 -0500 Subject: [PATCH 1/4] random_things.js --- mods/random_things.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/random_things.js b/mods/random_things.js index 5daf4d8c..bb1a94ad 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -37,9 +37,9 @@ elements.liquid_legend = { "void": { "elem1": "light", "elm2": null }, }, }, - runAfterLoad(function() { - if(enabledMods.includes("bananas.js")) { - elements.banana_juice = { +if (enabledMods.includes("bananas.js")) { + runAfterLoad(function() { + elements.banana_juice = { name: "banana juice", color: "#e0f542", behavior: behaviors.LIQUID, @@ -48,6 +48,6 @@ elements.liquid_legend = { state: "liquid", density: 200, excludeRandom: true, - } - } -}); + } + } +)}; From 660b1599f508623ea7f37c78c9286d387b272a3a Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Fri, 8 Dec 2023 10:18:50 -0500 Subject: [PATCH 2/4] random_things.js --- mods/random_things.js | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/mods/random_things.js b/mods/random_things.js index bb1a94ad..2ef020d1 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -37,6 +37,18 @@ elements.liquid_legend = { "void": { "elem1": "light", "elm2": null }, }, }, + +elements.wine = { + name: "wine", + color: "#f02263", + behavior: behaviors.LIQUID, + temp: 30, + category: "liquids", + state: "liquid", + density: 200, + excludeRandom: true, + }, + if (enabledMods.includes("bananas.js")) { runAfterLoad(function() { elements.banana_juice = { @@ -44,9 +56,9 @@ if (enabledMods.includes("bananas.js")) { color: "#e0f542", behavior: behaviors.LIQUID, temp: 800, - category: "food", + category: "liquids", state: "liquid", - density: 200, + density: 20, excludeRandom: true, } } From 9cc4d5fcfbf6a4bbfd4cd643976f562d616be9b6 Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Fri, 8 Dec 2023 10:37:22 -0500 Subject: [PATCH 3/4] random_things.js --- mods/random_things.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mods/random_things.js b/mods/random_things.js index 2ef020d1..3ca54fda 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -6,7 +6,9 @@ elements.legendary_energy = { "XX|EX:90>plasma,plasma,plasma,plasma,radon,radon,radon,radon,radon,radon,molten_iron,molten_uranium,legendary_energy AND CH:light|XX", "XX|XX|XX", ], - temp: 99999999700, + temp: 9869, + tempLow: 6382, + stateLow: "liquid_legend", category: "energy", state: "gas", density: 1000, @@ -27,7 +29,9 @@ elements.liquid_legend = { "M2|EX:15>radon,radon,legendary_energy,liquid_legend%0.4 AND DL%0.2|M2", "M1|M1|M1", ], - temp: 300, + temp: 6382, + tempHigh: 9869, + stateHigh: "legendary_energy", category: "liquids", state: "liquid", density: 2000, From 08b18e1fc6cdf630b45405d9d2119b9899a857fc Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Fri, 8 Dec 2023 11:06:41 -0500 Subject: [PATCH 4/4] another element --- mods/random_things.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/random_things.js b/mods/random_things.js index 3ca54fda..43f21d27 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -11,7 +11,7 @@ elements.legendary_energy = { stateLow: "liquid_legend", category: "energy", state: "gas", - density: 1000, + density: 3000, hardness: 1, excludeRandom: true, noMix: true, @@ -49,7 +49,7 @@ elements.wine = { temp: 30, category: "liquids", state: "liquid", - density: 200, + density: 20, excludeRandom: true, },