Add files via upload

This commit is contained in:
kaeud 2024-03-28 14:44:20 +07:00 committed by GitHub
parent c589a9b65a
commit 91411057ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 34 additions and 0 deletions

34
mods/drugs.js Normal file
View File

@ -0,0 +1,34 @@
elements.methamphetamine = {
category: "powders",
color: ["#b6ccd8", "#c5cfd6", "#cbd5db", "#6da5e0"],
state: "solid",
behavior: behaviors.POWDER,
temp: 20,
tempHigh: 1700,
stateHigh: "molten_methamphetamine",
reactions: {
"water": {elem1: null, elem2: "dirty_water"},
"cell": {elem1: "methamphetamine", elem2: "plague", chance: 0.001},
"plant": {elem1: "methamphetamine", elem2: "dead_plant", chance: 0.005},
},
};
elements.molten_methamphetamine = {
category: "states",
color: ["#fb7300", "#f93100", "#e05a1d", "#d65611"],
state: "liquid",
behavior: behaviors.RADMOLTEN,
tempLow: 1700,
stateLow: "methamphetamine",
};
elements.morphine = {
category: "powders",
color: "#c4dcf2",
state: "solid",
behavior: behaviors.POWDER,
reactions: {
"head": {elem1: "n_explosion", elem2: "n_explosion", chance: 0.00008},
"body": {elem1: "n_explosion", elem2: "n_explosion", chance: 0.00008},
},
};