mine stuff
This commit is contained in:
stefanblox 2024-01-05 12:59:04 -03:00 committed by GitHub
parent 2fde6bd455
commit 76711e37ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
mods/sbstuff.js Normal file
View File

@ -0,0 +1,23 @@
elements.rice = {
color: "#d1d1d1",
behavior: behaviors.POWDER,
category: "food",
state: "liquid",
reactions: {
"fire": { elem1: "rice", elem2: "burnt_rice" },
"heat": { elem1: "rice", elem2: "burnt_rice" },
"plasma": { elem1: "fire", elem2: "ash" },
"incinerate": { elem1: "fire", elem2: "ash" },
"heat_ray": { elem1: "fire", elem2: "ash" },
}
};
elements.burnt_rice = {
color: "#242424",
behavior: behaviors.POWDER,
category: "food",
state: "liquid",
reactions: {
"water": { elem1 : null, elem2: "dirty_water" },
}
};