test (mod order?)

This commit is contained in:
O-01-67 2022-09-04 16:56:53 -04:00 committed by GitHub
parent 9c28fc0af7
commit 5af7863653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 35 deletions

View File

@ -1,36 +1,38 @@
if(enabledMods.includes("mods/fey_and_more.js")) { runAfterLoad(function() {
elements.primordial_birthpool = { if(enabledMods.includes("mods/fey_and_more.js")) {
color:["#5E7453","#5E745D","#5E744B","#6C7C50","#6C7C59","#6C7C47"], elements.primordial_birthpool = {
state: "solid", color:["#5E7453","#5E745D","#5E744B","#6C7C50","#6C7C59","#6C7C47"],
behavior: [ state: "solid",
"CR:foam%1|CR:sapling,wheat_seed,flower_seed,algae,cell,mushroom_spore,lichen,yeast,antibody,cellulose%0.5 AND CR:foam%2|CR:foam%1", behavior: [
"M2|XX|M2", "CR:foam%1|CR:sapling,wheat_seed,flower_seed,algae,cell,mushroom_spore,lichen,yeast,antibody,cellulose%0.5 AND CR:foam%2|CR:foam%1",
"M1|M1|M1", "M2|XX|M2",
], "M1|M1|M1",
reactions: { ],
"cancer": { "elem1":["toxic_mistake","dirty_water"] }, reactions: {
"cyanide": { "elem1":["toxic_mistake","dirty_water"] }, "cancer": { "elem1":["toxic_mistake","dirty_water"] },
"infection": { "elem1":["toxic_mistake","dirty_water"] }, "cyanide": { "elem1":["toxic_mistake","dirty_water"] },
"plague": { "elem1":["toxic_mistake","dirty_water"] }, "infection": { "elem1":["toxic_mistake","dirty_water"] },
"ammonia": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.05 }, "plague": { "elem1":["toxic_mistake","dirty_water"] },
"radiation": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.15 }, "ammonia": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.05 },
"light": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.5 }, "radiation": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.15 },
"oxygen": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.02 }, "light": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.5 },
}, "oxygen": { "elem1":["algae","cell","mushroom_spore","lichen","yeast","antibody"], "chance":0.02 },
density: 1110, },
tempHigh: 100, density: 1110,
stateHigh: "steam", tempHigh: 100,
conduct: 0.33, stateHigh: "steam",
category: "liquids", conduct: 0.33,
hidden: true, category: "liquids",
reactions: { hidden: true,
concoction: { "elem1": ["primordial_soup", "birthpool", "primordial_birthpool"], "elem2": ["primordial_soup", "birthpool", "primordial_birthpool"], "chance":0.0045}, reactions: {
}, concoction: { "elem1": ["primordial_soup", "birthpool", "primordial_birthpool"], "elem2": ["primordial_soup", "birthpool", "primordial_birthpool"], "chance":0.0045},
},
};
if(!elements.birthpool.reactions) {
elements.birthpool.reactions = {}
}
elements.birthpool.reactions.primordial_soup = { "elem1":"primordial_birthpool", "elem2":"primordial_birthpool" }
}; };
});
if(!elements.birthpool.reactions) {
elements.birthpool.reactions = {}
}
elements.birthpool.reactions.primordial_soup = { "elem1":"primordial_birthpool", "elem2":"primordial_birthpool" }
};