sbstuff 1.3

added some foods and 3 marshmallow variants
This commit is contained in:
stefanblox 2024-01-05 22:20:00 -03:00 committed by GitHub
parent b6b736da44
commit 15e52a6948
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 45 additions and 0 deletions

View File

@ -229,3 +229,48 @@ elements.poop = {
category: "special",
state: "solid",
};
elements.marshmallow = {
tempHigh: 50,
stateHigh: "cooked_marshmallow",
color: "#ffe4e3",
behavior: behaviors.STURDYPOWDER,
category: "food",
state: "solid",
};
elements.cooked_marshmallow = {
tempHigh: 150,
stateHigh: "burnt_marshmallow",
color: "#d49e9d",
behavior: behaviors.STURDYPOWDER,
category: "food",
state: "liquid",
};
elements.burnt_marshmallow = {
tempHigh: 500,
stateHigh: "ash",
color: "#1c1212",
behavior: behaviors.STURDYPOWDER,
category: "food",
state: "solid",
};
elements.ramen = {
tempHigh: 500,
stateHigh: "ash",
color: "#fae34d",
behavior: behaviors.POWDER,
category: "food",
state: "solid",
};
elements.cereal = {
tempHigh: 500,
stateHigh: "ash",
color: ["#ba3425", "#baa31e", "#26ba1e", "#1e9dba", "#6f1eba"],
behavior: behaviors.STURDYPOWDER,
category: "food",
state: "liquid",
};