A graphite mod!

Graphite will oxidize (reacts with oxygen) to carbon dioxide! And, will reacts to Fluorine (In mod element). If Graphite reacts to fluorine it will get Carbon Tetrafluoride (In mod element.)
This commit is contained in:
JustARandomPlayerInSandBoxels 2025-08-22 11:45:48 +08:00 committed by GitHub
parent 9f1f70648a
commit df5ac75425
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 37 additions and 0 deletions

37
Graphite.js Normal file
View File

@ -0,0 +1,37 @@
elements.graphite = {
color: "#030104",
behavior: behaviors.POWDER,
category: "land",
state: "solid",
tempHigh: 3600,
stateHigh: "charcoal",
reactions: {
"oxygen": { elem1: "carbon_dioxide", elem2: null, tempMin: 700 },
"fluorine": { elem1: "carbon_tetrafluoride", elem2: null }
}
};
elements.fluorine = {
color: "#b5e61d",
behavior: behaviors.GAS,
category: "gas",
state: "gas",
density: 1.696,
reactions: {
"graphite": {elem1: "carbon_tetrafluoride", elem2: null }
},
temp: 25,
flammable: false
};
elements.carbon_tetrafluoride = {
color: "#ccffff",
behavior: behaviors.GAS,
category: "gas",
density: 3.72,
flammable: false,
reactions: {
"fire": { elem1: "carbon_dioxide", elem2: "fluorine", tempMin: 2000 }
}
};