Update kopalstuff.js

This commit is contained in:
DaviStudios 2024-02-26 15:01:29 +02:00 committed by GitHub
parent 9c3abd6203
commit 12dbde77a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 9 deletions

View File

@ -1,17 +1,37 @@
elements.candy_powder = {
color: "#cffaf1",
behavior: behaviors.POWDER,
category: null,
elements.sweetwater = {
color: "#8ae7eb",
behavior: behaviors.liquid,
category: "davko",
state: "solid",
reactions: {
"soda": { elem1: null, elem2: "syrup" }
},
};
elements.syrup = {
color: "#d9d2c3",
behavior: behaviors.liquid,
category: "davko",
state: "solid",
};
elements.lemon = {
color: "#fcc603",
behavior: behaviors.POWDER,
category: "food",
elements.orangesoda = {
color: "#b8820d",
behavior: behaviors.liquid,
category: "davko",
state: "solid",
reactions: {
"sugar": { elem1: null, elem2: "syrup" }
},
};
elements.orange = {
color: "#eda813",
behavior: behaviors.powder,
category: "davko",
state: "solid",
breakInto: "juice",
reactions: {
"sugar": { elem1: null, elem2: "candy_powder" }
"syrup": { elem1: null, elem2: "orangesoda" }
},
};