Update legend_element.js

This commit is contained in:
PumpkinPriest 2023-05-17 17:11:17 -04:00 committed by GitHub
parent 7b34422b46
commit ab958af28e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 45 additions and 34 deletions

View File

@ -1,41 +1,52 @@
elements.liquid_legend = {
color: "#13d644",
behavior: [
"XX|XX|XX",
"M2|EX:15>radon,radon,radon,liquid_legend%0.4 AND DL%0.2|M2",
"M1|M1|M1",
],
temp: 300,
category: "energy liquids",
state: "liquid",
density: 2000,
excludeRandom: true,
reactions: {
"magma": { "elem1": "armageddon", "elem2": null },
"void": { "elem1": "light", "elm2": null },
elements.legendary_energy = {
"name": "legendary energy"
"color": "#13d649",
"behavior": behaviors.GAS
"temp": 300,
"category": "energy liquids",
"state": "gas",
"density": 2000,
"reactions": {
"magma": { "elem1": "armageddon", "elem2": null },
"void": { "elem1": "light", "elm2": null },
}
runAfterLoad(function() {
if(enabledMods.includes("liquid_energy.js")) {
elements.liquid_legend = {
"name": "liquid legend"
"color": "#13d644",
"behavior": [
"XX|XX|XX",
"M2|EX:15>radon,radon,radon,liquid_legend%0.4 AND DL%0.2|M2",
"M1|M1|M1",
],
"temp": 300,
"category": "energy liquids",
"state": "liquid",
"density": 2000,
"excludeRandom": true,
"reactions": {
"magma": { "elem1": "armageddon", "elem2": null },
"void": { "elem1": "light", "elm2": null },
}
}
runAfterLoad(function() {
if(enabledMods.includes("bananas.js")) {
elements.banana_juice = {
color: "#e0f542",
temp: 800,
"name": "banana juice"
"color": "#e0f542",
"behavior": behaviors.LIQUID
"temp": 800,
"category": "food",
"state": "liquid",
"density": 200,
"excludeRandom": true,
category: "food",
state: "liquid",
density: 200,
excludeRandom: true,
}
}
}
});