Add files via upload

This commit is contained in:
Clide4 2024-01-04 22:41:08 -03:00 committed by GitHub
parent 99b5e0f774
commit 5b4100f42d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
mods/death.js Normal file
View File

@ -0,0 +1,18 @@
elements.chowder = {
color: "#c7c98b",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
reactions: {
"water": { elem1: null, elem2: "soup" },
},
};
elements.soup = {
color: "#c28719",
behavior: behaviors.LIQUID,
category: "food",
state: "liquid",
stateHigh: "chowder",
tempHigh: 100
};