From f4b3b5d26cfb4ca450b5760607bea04d58e8a1d8 Mon Sep 17 00:00:00 2001
From: CarbonMonoxida <164758530+CarbonMonoxida@users.noreply.github.com>
Date: Sat, 4 May 2024 19:26:37 +0700
Subject: [PATCH 1/4] Update mod-list.html
change aScientistsWish main Programmer from CPU into Sobble
---
mod-list.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mod-list.html b/mod-list.html
index fed60b74..93a4b128 100644
--- a/mod-list.html
+++ b/mod-list.html
@@ -156,7 +156,7 @@
| Science & Chemistry |
| alcohol.js | Adds methanol, (iso-)propanol, and butanol | Alice |
| alkahest.js | Adds the alkahest, a liquid which dissolves anything | Alice |
-| aScientistsWish.js | Adds things that related to science, especially radiation | Carbon Monoxide, CPU |
+| aScientistsWish.js | Adds things that related to science, especially radiation | Carbon Monoxide, Sobble |
| bettermetalscrap.js | Allows metal scrap to be melted back into its original material | nousernamefound |
| bigger_star_spawners.js | Adds spawners for larger stars | Alice |
| bioooze_and_pyrogens.js | Adds Bio-Ooze from Frackin’ Universe and several heat-producing materials from various games’ mods | Alice |
From b38b85ead8fcdd1e3b12e1506d9cae0a61293494 Mon Sep 17 00:00:00 2001
From: ludus530 <163735402+ludus530@users.noreply.github.com>
Date: Sun, 5 May 2024 09:35:22 +0200
Subject: [PATCH 2/4] cash_n_more.js
adds cash and paper
---
mods/cash_n_more.js | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100644 mods/cash_n_more.js
diff --git a/mods/cash_n_more.js b/mods/cash_n_more.js
new file mode 100644
index 00000000..ffe5dd21
--- /dev/null
+++ b/mods/cash_n_more.js
@@ -0,0 +1,37 @@
+elements.cash = {
+ color: "#00e600",
+ behavior: behaviors.POWDER,
+ category: "powders",
+};
+
+elements.paper = {
+ color: "#ffffff",
+ behavior: behaviors.SOLID,
+ category: "solids",
+};
+
+elements.shredded_paper = {
+ color: "#ffffff",
+ behavior: behaviors.POWDER,
+ category: "powders",
+};
+
+elements.shredded_cash = {
+ color: "#004d00",
+ behavior: behaviors.POWDER,
+ category: "powders",
+};
+
+elements.shredder = {
+ color: "#08b508",
+ behavior: behaviors.SOLID,
+ tool: function(pixel) {
+ if (pixel.element == "cash") {
+ pixel.element = "shredded_cash"
+ },
+ if (pixel.element == "paper") {
+ pixel.element = "shredded_money"
+ }
+ },
+ category: "tools",
+};
From a3adf44dbe36fb6b4e3a1b744f5f5407d27a776d Mon Sep 17 00:00:00 2001
From: ludus530 <163735402+ludus530@users.noreply.github.com>
Date: Sun, 5 May 2024 12:57:30 +0200
Subject: [PATCH 3/4] cash_n_more.js
added sponges
---
mods/cash_n_more.js | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/mods/cash_n_more.js b/mods/cash_n_more.js
index ffe5dd21..e267a8f7 100644
--- a/mods/cash_n_more.js
+++ b/mods/cash_n_more.js
@@ -4,6 +4,27 @@ elements.cash = {
category: "powders",
};
+delete elements.paper;
+delete elements.sponge;
+
+elements.sponge = {
+ color: "#ffff1a",
+ behavior: behaviors.SOLID,
+ category: "solids",
+ tool: function(pixel) {
+ if (pixel.element == "water") {
+ pixel.element = "wet_sponge"
+ }
+ },
+};
+
+elements.wet_sponge = {
+ color: "#cccc00",
+ behavior: behaviors.SOLID,
+ category: "solids",
+};
+
+
elements.paper = {
color: "#ffffff",
behavior: behaviors.SOLID,
From ac25c2051d4dfac3641459fb1732d67e259c4a75 Mon Sep 17 00:00:00 2001
From: slweeb <91897291+slweeb@users.noreply.github.com>
Date: Sun, 5 May 2024 19:33:22 -0400
Subject: [PATCH 4/4] fixed inconsistency
---
mod-list.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mod-list.html b/mod-list.html
index 93a4b128..a06fed4d 100644
--- a/mod-list.html
+++ b/mod-list.html
@@ -156,7 +156,7 @@
| Science & Chemistry |
| alcohol.js | Adds methanol, (iso-)propanol, and butanol | Alice |
| alkahest.js | Adds the alkahest, a liquid which dissolves anything | Alice |
-| aScientistsWish.js | Adds things that related to science, especially radiation | Carbon Monoxide, Sobble |
+| aScientistsWish.js | Adds things that related to science, especially radiation | Carbon Monoxide, salmonfishy |
| bettermetalscrap.js | Allows metal scrap to be melted back into its original material | nousernamefound |
| bigger_star_spawners.js | Adds spawners for larger stars | Alice |
| bioooze_and_pyrogens.js | Adds Bio-Ooze from Frackin’ Universe and several heat-producing materials from various games’ mods | Alice |