Merge pull request #234 from stefanblox/main

my stuff
This commit is contained in:
slweeb 2024-01-05 13:34:43 -05:00 committed by GitHub
commit 8516d8c95a
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" },
}
};