virus bomb
This commit is contained in:
parent
09a54ce764
commit
a757944a9a
|
|
@ -2,7 +2,6 @@ var modName = "mods/life_eater.js";
|
|||
var fireMod = "mods/fire_mod.js";
|
||||
|
||||
if(!enabledMods.includes(fireMod)) {
|
||||
enabledMods.splice(enabledMods.indexOf(modName),0,fireMod);
|
||||
enabledMods.splice(enabledMods.indexOf(modName),0,fireMod);
|
||||
localStorage.setItem("enabledMods", JSON.stringify(enabledMods));
|
||||
alert(`The ${fireMod} mod is required and has been automatically inserted (reload for this to take effect).`);
|
||||
|
|
@ -106,4 +105,18 @@ if(!enabledMods.includes(fireMod)) {
|
|||
excludeRandom: true,
|
||||
};
|
||||
|
||||
elements.virus_bomb = {
|
||||
color: "#accc70",
|
||||
behavior: [
|
||||
"XX|EX:16>life_eater_virus|XX",
|
||||
"XX|XX|XX",
|
||||
"XX|EX:16>life_eater_virus AND M1|XX"
|
||||
],
|
||||
density: 3500,
|
||||
hardness: 0.95,
|
||||
breakInto: "life_eater_virus",
|
||||
tempHigh: 2400,
|
||||
stateHigh: elements.metal_scrap.stateHigh.concat("life_eater_virus","life_eater_virus","life_eater_virus"),
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue