Merge pull request #948 from therealsuss/main
This commit is contained in:
commit
e4cafe9f22
|
|
@ -186,7 +186,6 @@
|
|||
<tr><td>bioooze_and_pyrogens.js</td><td>Adds Bio-Ooze from <a herf="https://frackinuniverse.miraheze.org/wiki/Main_Page">Frackin’ Universe</a> and several heat-producing materials from various games’ mods</td><td>Alice</td></tr>
|
||||
<tr><td>boiling_things.js</td><td>Allows for various elements to be vaporized</td><td>Alice</td></tr>
|
||||
<tr><td>bouncing_balls.js</td><td>Adds new types of balls that bounce accurately and roll.</td><td>Nekonico</td></tr>
|
||||
<tr><td>bromine.js</td><td>Adds bromine which emits an orange gas</td><td>Suss</td></tr>
|
||||
<tr><td>chalcopyrite.js</td><td>Adds the chalcopyrite ore</td><td>Sophie</td></tr>
|
||||
<tr><td>chem.js</td><td>Adds several chemistry and physics-related elements</td><td>lllllllllwith10ls</td></tr>
|
||||
<tr><td>clf3.js</td><td>Adds Chlorine Trifluoride</td><td>Alice</td></tr>
|
||||
|
|
|
|||
|
|
@ -1,40 +0,0 @@
|
|||
// coded by suss, so the code probably sucks
|
||||
// lmao it only adds three elements, actually this is my first mod that even ADDS elements
|
||||
// wait, nobody even reads the mod code, so im essentially talking to myself
|
||||
// oh well :(
|
||||
|
||||
elements.bromine = {
|
||||
color: "#4e0e00",
|
||||
behavior: [
|
||||
"XX|CR:bromine_vapor%5|XX",
|
||||
"M2|XX|M2",
|
||||
"XX|M1|XX",
|
||||
],
|
||||
category: "liquids",
|
||||
viscosity: 1.5,
|
||||
state: "liquid",
|
||||
density: 3102,
|
||||
tempLow: -7,
|
||||
stateLow: "bromine_ice",
|
||||
};
|
||||
|
||||
elements.bromine_ice = {
|
||||
color: "#350900",
|
||||
behavior: behaviors.WALL,
|
||||
category: "states",
|
||||
state: "solid",
|
||||
density: 3102,
|
||||
tempHigh: -7,
|
||||
stateHigh: "bromine",
|
||||
temp: -10,
|
||||
hidden: true,
|
||||
};
|
||||
|
||||
elements.bromine_vapor = {
|
||||
color: "#d48846",
|
||||
behavior: behaviors.GAS,
|
||||
category: "gases",
|
||||
state: "gas",
|
||||
density: 7.59,
|
||||
hidden: true,
|
||||
}
|
||||
Loading…
Reference in New Issue