Add files via upload

This commit is contained in:
GregorTV7 2024-06-04 08:53:27 -07:00 committed by GitHub
parent 38a962e8b2
commit a7cbacb511
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 42 additions and 0 deletions

42
mods/barf_mod.js Normal file
View File

@ -0,0 +1,42 @@
elements.barf = {
color: "#9ACD32",
behavior: [
"XX|XX|XX",
"XX|XX|XX",
"M1|M1|M1"
],
category: "liquids",
density: 1020,
state: "liquid",
viscosity: 5,
reactions: {
"milk": { "elem1": "cheese", "chance": 1.0 }
},
tempHigh: 300,
stateHigh: "stench",
tempLow: 0,
stateLow: "frozen_barf",
flammable: true,
burn: 20,
burnInto: "smoke"
};
elements.frozen_barf = {
color: "#B0E0E6",
behavior: [
"XX|XX|XX",
"XX|XX|XX",
"XX|XX|XX"
],
category: "solids",
density: 1030,
state: "solid",
tempHigh: 0,
stateHigh: "barf"
};
elements.slime.reactions = elements.slime.reactions || {};
elements.slime.reactions.blood = { "elem1": "barf", "chance": 1.0 };
elements.blood.reactions = elements.blood.reactions || {};
elements.blood.reactions.slime = { "elem1": "barf", "chance": 1.0 };