random_things.js

This commit is contained in:
PumpkinPriest 2023-12-08 10:18:50 -05:00 committed by GitHub
parent 96a473544d
commit 660b1599f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 2 deletions

View File

@ -37,6 +37,18 @@ elements.liquid_legend = {
"void": { "elem1": "light", "elm2": null },
},
},
elements.wine = {
name: "wine",
color: "#f02263",
behavior: behaviors.LIQUID,
temp: 30,
category: "liquids",
state: "liquid",
density: 200,
excludeRandom: true,
},
if (enabledMods.includes("bananas.js")) {
runAfterLoad(function() {
elements.banana_juice = {
@ -44,9 +56,9 @@ if (enabledMods.includes("bananas.js")) {
color: "#e0f542",
behavior: behaviors.LIQUID,
temp: 800,
category: "food",
category: "liquids",
state: "liquid",
density: 200,
density: 20,
excludeRandom: true,
}
}