changed mod list and star wars.js final time :)

This commit is contained in:
SeaPickle 2023-11-29 16:22:05 -07:00
parent 12f5fa8a1a
commit d577ddd259
2 changed files with 11 additions and 3 deletions

View File

@ -229,7 +229,7 @@
<tr><td>sus.js</td><td>Adds an Among Us crewmate</td><td>Nv7</td></tr> <tr><td>sus.js</td><td>Adds an Among Us crewmate</td><td>Nv7</td></tr>
<tr><td>triggerable_random_powders.js</td><td>Adds powders with different abilities, such as heating and cooling</td><td>Alice</td></tr> <tr><td>triggerable_random_powders.js</td><td>Adds powders with different abilities, such as heating and cooling</td><td>Alice</td></tr>
<tr><td>troll.js</td><td>Adds various dumb elements that iterate randomly on the entire screen</td><td>Alice</td></tr> <tr><td>troll.js</td><td>Adds various dumb elements that iterate randomly on the entire screen</td><td>Alice</td></tr>
<tr><td>star_wars.js</td><td>Adds various items from Star Wars by Disney</td><td>SeaPickle754</td>
<!----><tr><td class="modCat" colspan="3">Visual Effects</td></tr><!----> <!----><tr><td class="modCat" colspan="3">Visual Effects</td></tr><!---->
<tr><td>acid_and_shapes.js</td><td>Weird visual effects. Enable in Settings</td><td>Alice</td></tr> <tr><td>acid_and_shapes.js</td><td>Weird visual effects. Enable in Settings</td><td>Alice</td></tr>
<tr><td>invisible_dye.js</td><td>Adds elements like Dye and Spray Paint that take the color of the background</td><td>Alice</td></tr> <tr><td>invisible_dye.js</td><td>Adds elements like Dye and Spray Paint that take the color of the background</td><td>Alice</td></tr>

View File

@ -7,11 +7,19 @@ elements.carbonite = {
tempHigh: 1000, tempHigh: 1000,
stateHigh: "carbondioxide", stateHigh: "carbondioxide",
reactions:{ reactions:{
"acid": "slag", "acid": {elem1: null, elem2: "slag"},
} }
}; };
elements.light_saber = {
color: "#06d106",
behavior: behaviors.WALL,
category: "star wars",
state: "solid"
}
// look it up: // look it up:
// https://starwars.fandom.com/wiki/Plastoid // https://starwars.fandom.com/wiki/Plastoid
// stormtrooper armor // stormtrooper armor
@ -22,7 +30,7 @@ elements.plastoid = {
state: "solid", state: "solid",
density: 400, density: 400,
tempHigh: 300, tempHigh: 300,
stateHigh: "molten_plastic" stateHigh: "molten_plastic",
hardness: 1, hardness: 1,
burn: 0 burn: 0
}; };