Create CherrySoda.js

This commit is contained in:
guzzo86 2024-04-26 22:26:42 -04:00 committed by GitHub
parent 9c969e61e5
commit 23daf7cad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 52 additions and 0 deletions

52
mods/CherrySoda.js Normal file
View File

@ -0,0 +1,52 @@
elements.potassiumpermanganate = {
color: ["#800080", "#FF00FF"],
behavior: behaviors.POWDER,
category: "powders",
state: "solid",
density: 2500,
desc: "Potassium permanganate is a dark purple, crystalline solid. It is used as a powerful oxidizing agent.",
tempHigh: 240,
stateHigh: "molten_potassiumpermanganate",
}
elements.molten_potassiumpermanganate = {
color: ["#4B0082", "#800080", "#9932CC", "#8A2BE2", "#6A5ACD", "#FF00FF"],
category: "powders",
state: "solid",
density: 2500,
desc: "Potassium permanganate is a dark purple, crystalline solid. It is used as a powerful oxidizing agent.",
tempLow: 239,
stateLow: "potassiumpermanganate",
}
elements.tolulene = {
color: "#FFFFFF",
behavior: behaviors.LIQUID,
category: "liquids",
state: "liquid",
density: 866,
desc: "Tolulene is used as a paint thinner and also referred to as benezene or methylbeneze",
burn: 37.5,
burnTime: 900,
burnInto: ["steam", "smoke", "fire", "fire",],
reactions: {
"potassiumpermanganate": {elem1: "benzaldehyde", elem2: "benzaldehyde"},
}
}
elements.benzaldehyde = {
color: "#F5F5F5",
behavior: behaviors.LIQUID,
category: "liquids",
state: "liquid",
density: 1045,
desc: "Benzaldehyde is cherry flavor. It is also clear like tolulene.",
reactions: {
"seltzer": {elem1: "cherrysoda", elem2: "cherrysoda"},
}
}
elements.cherrysoda = {
color: "#D2042D",
behavior: behaviors.LIQUID,
category: "food",
state: "liquid",
density: 1045,
desc: "Cherry soda."
}