Merge pull request #269 from stefanblox/main

sbstuff 2.0
This commit is contained in:
slweeb 2024-01-10 17:00:40 -05:00 committed by GitHub
commit 25cb082f67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 55 additions and 1 deletions

View File

@ -867,6 +867,9 @@ elements.incinerator = {
category: "machines",
state: "solid",
insulate: true,
reactions: {
"fart": { elem1: null, elem2: "ohio" },
}
};
elements.cocoa = {
@ -1039,7 +1042,7 @@ elements.carrot = {
elements.wine = {
tempHigh: 400,
stateHigh: "steam",
color: "#000000",
color: "#2e0206",
behavior: behaviors.LIQUID,
category: "liquids",
state: "liquid",
@ -1073,6 +1076,7 @@ elements.dark_energy = {
};
elements.ohio = {
hidden: true,
hardness: 1,
hidden: true,
color: "#40174d",
@ -1087,6 +1091,52 @@ elements.ohio = {
desc: "use at own risk",
};
elements.papaya = {
tempHigh: 300,
stateHigh: "steam",
color: "#e38934",
behavior: behaviors.STURDYPOWDER,
category: "food",
state: "liquid",
};
elements.caviar = {
viscosity: 10000,
tempHigh: 500,
stateHigh: "steam",
color: "#1f1b18",
behavior: behaviors.LIQUID,
category: "food",
state: "liquid",
};
elements.peeper = {
hidden: true,
density: 1000,
burn: 0.00001,
burnTime: 9999,
ignoreAir: true,
burning: true,
hardness: 1,
tempHigh: 5000000000000000000,
stateHigh: "ash",
color: "#9c1208",
behavior: behaviors.STURDYPOWDER,
category: "joke",
state: "solid",
};
elements.dollar = {
hidden: true,
viscosity: 10000,
tempHigh: 500,
stateHigh: "fire",
color: ["#4a8741", "#4bb53c"],
behavior: behaviors.LIQUID,
category: "joke",
state: "liquid",
};
elements.incinerate.category = "tools",
elements.cook.category = "tools",
elements.room_temp.category = "tools",
@ -1117,3 +1167,7 @@ elements.potato.reactions = {
elements.water.reactions = {
"cocaine": { elem1: null, elem2: "solid_water", chance: 0.1 }
};
elements.paper.reactions = {
"bless": { elem1: null, elem2: "dollar", chance: 0.1 },
};