From f6734da4e55bdb20e730a4d9b9b9ced0ac232dbe Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Sun, 21 May 2023 15:45:55 -0400 Subject: [PATCH 01/30] random_things.js Banana --- mods/random_things.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/random_things.js b/mods/random_things.js index d1ed8e04..4b51d9a6 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -36,7 +36,7 @@ runAfterLoad(function() { reactions" { "magma": { "elem1": "armageddon", "elem2": null }, "void": { "elem1": "light", "elm2": null } - } + }, elements.banana_juice = { name: "banana juice", color: "#e0f542", From 5be471c3ce0635f64f5ee0beb014ebf2d1bca9e3 Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Sun, 21 May 2023 15:53:34 -0400 Subject: [PATCH 02/30] random_things.js but banana juice Banana --- mods/random_things.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mods/random_things.js b/mods/random_things.js index 4b51d9a6..3c56734f 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -16,6 +16,7 @@ elements.legendary_energy = { reactions: { "magma": { "elem1": "armageddon", "elem2": null }, "void": { "elem1": "light", "elm2": null }, + }, } runAfterLoad(function() { @@ -33,10 +34,11 @@ runAfterLoad(function() { state: "liquid", density: 2000, excludeRandom: true, - reactions" { + reactions { "magma": { "elem1": "armageddon", "elem2": null }, - "void": { "elem1": "light", "elm2": null } - }, + "void": { "elem1": "light", "elm2": null }, + }, + }, elements.banana_juice = { name: "banana juice", color: "#e0f542", From 1c540cc36172268aaa4678ea9ad0f07798aed74a Mon Sep 17 00:00:00 2001 From: Melecie <97272289+Melecie@users.noreply.github.com> Date: Mon, 29 May 2023 08:06:13 +0800 Subject: [PATCH 03/30] Move to mods --- yumcherries.js => mods/yumcherries.js. | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename yumcherries.js => mods/yumcherries.js. (97%) diff --git a/yumcherries.js b/mods/yumcherries.js. similarity index 97% rename from yumcherries.js rename to mods/yumcherries.js. index 90b335ae..1d4b786d 100644 --- a/yumcherries.js +++ b/mods/yumcherries.js. @@ -540,4 +540,4 @@ if(enabledMods.includes(onTryMoveIntoMod) && enabledMods.includes(libraryMod)) { enabledMods.splice(enabledMods.indexOf(modName),0,libraryMod); localStorage.setItem("enabledMods", JSON.stringify(enabledMods)); alert(`The ${onTryMoveIntoMod} mod and ${libraryMod} mods are required and have been automatically inserted (reload for this to take effect).`); -}; \ No newline at end of file +}; From bbab26e6a4870ddfdacca1ab014b34c63f508bb1 Mon Sep 17 00:00:00 2001 From: Zippyous213 <135406936+Zippyous213@users.noreply.github.com> Date: Fri, 2 Jun 2023 23:50:48 -0500 Subject: [PATCH 04/30] Add files via upload --- vibranium.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vibranium.js diff --git a/vibranium.js b/vibranium.js new file mode 100644 index 00000000..e29faf4d --- /dev/null +++ b/vibranium.js @@ -0,0 +1,19 @@ +}; +elements.vibranium + color:"#455357", + behavior: behaviors.WALL, + category: "solids", + state: "solid", + tempHigh: 1000000000, + conduct: Infinity, + hardness: 1, +}; +elements.uru + color: "#719aa6", + behavior: behaviors.WALL, + catagory: "solids", + state: "solid", + tempHigh: 1000000000, + conduct: 0, + Hardness: 1, +}; From 6c273ba8ba1653654c49fcee77ea34ee708a1963 Mon Sep 17 00:00:00 2001 From: Zippyous213 <135406936+Zippyous213@users.noreply.github.com> Date: Fri, 2 Jun 2023 23:58:32 -0500 Subject: [PATCH 05/30] Rename vibranium.js to mods/vibranium.js --- vibranium.js => mods/vibranium.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename vibranium.js => mods/vibranium.js (100%) diff --git a/vibranium.js b/mods/vibranium.js similarity index 100% rename from vibranium.js rename to mods/vibranium.js From 8d9d075693e6317f61a3fe307a19c9145ccc5e5a Mon Sep 17 00:00:00 2001 From: PumpkinPriest <104536541+PumpkinPriest@users.noreply.github.com> Date: Sat, 3 Jun 2023 21:53:29 -0400 Subject: [PATCH 06/30] random_things.js fixed reaction error (probably) --- mods/random_things.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/random_things.js b/mods/random_things.js index 3c56734f..6c7755ee 100644 --- a/mods/random_things.js +++ b/mods/random_things.js @@ -34,7 +34,7 @@ runAfterLoad(function() { state: "liquid", density: 2000, excludeRandom: true, - reactions { + reactions: { "magma": { "elem1": "armageddon", "elem2": null }, "void": { "elem1": "light", "elm2": null }, }, From 80cf55a4931df4bc1a1c3a8bc9a71bfb8c3ba36c Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Sun, 4 Jun 2023 18:38:07 -0400 Subject: [PATCH 07/30] add email --- index.html | 7 ++++++- style.css | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 310b6fec..1948d85e 100644 --- a/index.html +++ b/index.html @@ -13003,6 +13003,10 @@ Cancer, Landmine, Grenade, Smoke Grenade">? +
Want your ad here? Email us at contact@r74n.com!
+Sandboxels has many applications in education. With a hands-on experience, it can give students an understanding of emerging phenomena in many fields, such as biology, chemistry, ecology, geology, and even virology. There are countless aspects to discover.
We have a thriving community on Discord! There you can post feedback or share your creations.
-If you'd like to support us, consider donating on PayPal or CashApp, or subscribing on Discord.
+ +Business inquiries? Education stories? Help needed? Email us at contact@r74n.com!
Thanks to our Donators: Serioustar, Trent, u2ce
Sandboxels is developed by R74n. Check out our other projects!