sbstuff 2.8
This commit is contained in:
parent
e471d926f2
commit
6f92a13ad1
|
|
@ -592,6 +592,7 @@ elements.cocaine = {
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.zombie = {
|
elements.zombie = {
|
||||||
|
excludeRandom: true,
|
||||||
tempHigh: 500,
|
tempHigh: 500,
|
||||||
stateHigh: "ash",
|
stateHigh: "ash",
|
||||||
color: "#114700",
|
color: "#114700",
|
||||||
|
|
@ -784,6 +785,7 @@ elements.fart = {
|
||||||
behavior: behaviors.DGAS,
|
behavior: behaviors.DGAS,
|
||||||
category: "joke",
|
category: "joke",
|
||||||
state: "gas",
|
state: "gas",
|
||||||
|
excludeRandom: true
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.chips = {
|
elements.chips = {
|
||||||
|
|
@ -998,7 +1000,7 @@ elements.incinerator = {
|
||||||
insulate: true,
|
insulate: true,
|
||||||
excludeRandom: true,
|
excludeRandom: true,
|
||||||
reactions: {
|
reactions: {
|
||||||
"fart": { elem1: null, elem2: "ohio" },
|
"fart": { elem1: null, elem2: "kaboom" },
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -1211,7 +1213,7 @@ elements.dark_energy = {
|
||||||
excludeRandom: true
|
excludeRandom: true
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.ohio = {
|
elements.kaboom = {
|
||||||
hidden: true,
|
hidden: true,
|
||||||
hardness: 1,
|
hardness: 1,
|
||||||
hidden: true,
|
hidden: true,
|
||||||
|
|
@ -1380,15 +1382,6 @@ elements.yoylecake = {
|
||||||
state: "liquid",
|
state: "liquid",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.banana = {
|
|
||||||
tempHigh: 300,
|
|
||||||
stateHigh: "ash",
|
|
||||||
color: "#f06c0e",
|
|
||||||
behavior: behaviors.STURDYPOWDER,
|
|
||||||
category: "food",
|
|
||||||
state: "liquid",
|
|
||||||
};
|
|
||||||
|
|
||||||
elements.cool_ray = {
|
elements.cool_ray = {
|
||||||
color: ["#0cdaed","#baf9ff"],
|
color: ["#0cdaed","#baf9ff"],
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
|
|
@ -1692,7 +1685,8 @@ elements.liquid_filler = {
|
||||||
"M1|M1 AND CH:liquid_filler%50|M1",
|
"M1|M1 AND CH:liquid_filler%50|M1",
|
||||||
],
|
],
|
||||||
category: "special",
|
category: "special",
|
||||||
state: "liquid"
|
state: "liquid",
|
||||||
|
excludeRandom: true
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.antimony = {
|
elements.antimony = {
|
||||||
|
|
@ -1749,6 +1743,42 @@ elements.antmatter = {
|
||||||
desc: "first ever others category element i guess"
|
desc: "first ever others category element i guess"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.thermal_paste = {
|
||||||
|
viscosity: 10000,
|
||||||
|
tempHigh: 200,
|
||||||
|
stateHigh: [null, "thermal_paste"],
|
||||||
|
color: "#c5cfd3",
|
||||||
|
behavior: [
|
||||||
|
"XX|CO:1|XX",
|
||||||
|
"CO:1 AND M2|XX|CO:1 AND M2",
|
||||||
|
"M1|CO:1 AND M1|M1",
|
||||||
|
],
|
||||||
|
category: "liquids",
|
||||||
|
state: "liquid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.sam = {
|
||||||
|
name: "sam's sperm i think",
|
||||||
|
viscosity: 10000,
|
||||||
|
color: "#0e0e0e",
|
||||||
|
behavior: behaviors.LIQUID,
|
||||||
|
category: "joke",
|
||||||
|
state: "liquid",
|
||||||
|
desc: "begs the question; did he censor himself?"
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.glitch = {
|
||||||
|
color: ["#ff0000", "#c300ff", "#bbff00", "#1100ff", "#00ffaa"],
|
||||||
|
behavior: [
|
||||||
|
"XX|XX|XX",
|
||||||
|
"XX|CC:ff0000,c300ff,bbff00,1100ff,00ffaa|XX",
|
||||||
|
"XX|XX|XX"
|
||||||
|
],
|
||||||
|
category: "special",
|
||||||
|
conduct: 0.5,
|
||||||
|
movable: false
|
||||||
|
};
|
||||||
|
|
||||||
elements.incinerate.category = "tools",
|
elements.incinerate.category = "tools",
|
||||||
elements.cook.category = "tools",
|
elements.cook.category = "tools",
|
||||||
elements.room_temp.category = "tools",
|
elements.room_temp.category = "tools",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue