diff --git a/mod-list.html b/mod-list.html
index 76a87b4e..14b6744b 100644
--- a/mod-list.html
+++ b/mod-list.html
@@ -229,7 +229,7 @@
| sus.js | Adds an Among Us crewmate | Nv7 |
| triggerable_random_powders.js | Adds powders with different abilities, such as heating and cooling | Alice |
| troll.js | Adds various dumb elements that iterate randomly on the entire screen | Alice |
-
+| star_wars.js | Adds various items from Star Wars by Disney | SeaPickle754 |
| Visual Effects |
| acid_and_shapes.js | Weird visual effects. Enable in Settings | Alice |
| invisible_dye.js | Adds elements like Dye and Spray Paint that take the color of the background | Alice |
diff --git a/mods/star_wars.js b/mods/star_wars.js
index d155671a..0961bc84 100644
--- a/mods/star_wars.js
+++ b/mods/star_wars.js
@@ -7,11 +7,19 @@ elements.carbonite = {
tempHigh: 1000,
stateHigh: "carbondioxide",
reactions:{
- "acid": "slag",
+ "acid": {elem1: null, elem2: "slag"},
+
}
};
+elements.light_saber = {
+ color: "#06d106",
+ behavior: behaviors.WALL,
+ category: "star wars",
+ state: "solid"
+}
+
// look it up:
// https://starwars.fandom.com/wiki/Plastoid
// stormtrooper armor
@@ -22,7 +30,7 @@ elements.plastoid = {
state: "solid",
density: 400,
tempHigh: 300,
- stateHigh: "molten_plastic"
+ stateHigh: "molten_plastic",
hardness: 1,
burn: 0
};