Merge pull request #206 from Ruterm/main

add cooked apple and iced
This commit is contained in:
slweeb 2023-12-31 13:42:18 -05:00 committed by GitHub
commit 0f8b47dc2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

26
mods/cooked_apple.js Normal file
View File

@ -0,0 +1,26 @@
//В этом моде я добавил печёное яблоко
elements.cooked_apple = {
color: "#271f1c",
behavior: behaviors.POWDER,
temp: 20,
category: "food",
state: "solid",
tempHigh: 345,
stateHigh: "ash",
tempLow: -30,
stateLow: "iced_apple",
density: 475
};
elements.iced_apple = {
color: "#f7a37e",
behavior: behaviors.WALL,
temp: 20,
category: "states",
state: "solid",
tempHigh: 10,
stateHigh: "cooked_apple",
density: 745
};