made mod not.. duplicate spontaneously?

This commit is contained in:
moss 2024-05-31 11:24:21 +02:00 committed by GitHub
parent 4dd883748e
commit 016ea71f45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 323 additions and 19 deletions

View File

@ -1,6 +1,10 @@
/*addMod("mossstuff.js");
removeMod("pizzasstuff.js"); removeMod("pizzasstuff.js");
addMod("mossstuff.js");
reload(); reload(); */
alert("THIS MOD IS NO LONGER SUPPORTED!\nThe mod 'pizzasstuff.s' and all of its contents have been moved to mossstuff.js.\nPlease install mossstuff.js to continue getting updates.");
elements.freeze_ray = { elements.freeze_ray = {
color: ["#8cf9ff","#5c59ff"], color: ["#8cf9ff","#5c59ff"],
@ -71,6 +75,12 @@ elements.beer = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 100,
stateHigh: ["fire","steam","steam"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.root_beer = { elements.root_beer = {
@ -79,6 +89,12 @@ elements.root_beer = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
tempHigh: 100,
stateHigh: ["fire","steam","steam"],
isFood: true,
}; };
elements.fruit_slushy = { elements.fruit_slushy = {
@ -90,6 +106,12 @@ elements.fruit_slushy = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 100,
stateHigh: ["fire","steam","steam"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.mold = { elements.mold = {
@ -98,6 +120,11 @@ elements.mold = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
}; };
elements.chocolate_slushy = { elements.chocolate_slushy = {
@ -109,6 +136,12 @@ elements.chocolate_slushy = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 100,
stateHigh: ["fire","steam","steam"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.chocolate_sauce = { elements.chocolate_sauce = {
@ -118,6 +151,12 @@ elements.chocolate_sauce = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.chocolate_ice_cream = { elements.chocolate_ice_cream = {
@ -130,6 +169,7 @@ elements.chocolate_ice_cream = {
tempHigh: 15, tempHigh: 15,
stateHigh: "cream", stateHigh: "cream",
temp: 0, temp: 0,
isFood: true,
}; };
elements.fruit_ice_cream = { elements.fruit_ice_cream = {
@ -142,6 +182,7 @@ elements.fruit_ice_cream = {
tempHigh: 15, tempHigh: 15,
stateHigh: "cream", stateHigh: "cream",
temp: 0, temp: 0,
isFood: true,
}; };
elements.snow_cone = { elements.snow_cone = {
@ -154,6 +195,7 @@ elements.snow_cone = {
tempHigh: 15, tempHigh: 15,
stateHigh: "smashed_ice", stateHigh: "smashed_ice",
temp: 0, temp: 0,
isFood: true,
}; };
elements.mint_ice_cream = { elements.mint_ice_cream = {
@ -167,6 +209,7 @@ elements.mint_ice_cream = {
tempHigh: 15, tempHigh: 15,
stateHigh: "cream", stateHigh: "cream",
temp: 0, temp: 0,
isFood: true,
reactions: { reactions: {
"chocolate": { elem1: "mint_chocolate_ice_cream", elem2: null }, "chocolate": { elem1: "mint_chocolate_ice_cream", elem2: null },
} }
@ -182,6 +225,7 @@ elements.mint_chocolate_ice_cream = {
tempHigh: 15, tempHigh: 15,
stateHigh: "cream", stateHigh: "cream",
temp: 0, temp: 0,
isFood: true,
}; };
@ -193,7 +237,10 @@ elements.chocolate_yogurt = {
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempLow: 0, tempLow: 0,
stateHigh: ["fire","steam","steam"],
tempHigh: 450,
stateLow: "frozen_chocolate_yogurt", stateLow: "frozen_chocolate_yogurt",
isFood: true,
}; };
elements.fruit_yogurt = { elements.fruit_yogurt = {
@ -205,6 +252,9 @@ elements.fruit_yogurt = {
hidden: "TRUE", hidden: "TRUE",
tempLow: 0, tempLow: 0,
stateLow: "frozen_fruit_yogurt", stateLow: "frozen_fruit_yogurt",
isFood: true,
stateHigh: ["fire","steam","steam"],
tempHigh: 450,
}; };
elements.frozen_fruit_yogurt = { elements.frozen_fruit_yogurt = {
@ -218,6 +268,7 @@ elements.frozen_fruit_yogurt = {
tempHigh: 0, tempHigh: 0,
stateHigh: "fruit_yogurt", stateHigh: "fruit_yogurt",
temp: 0, temp: 0,
isFood: true,
}; };
elements.frozen_chocolate_yogurt = { elements.frozen_chocolate_yogurt = {
@ -231,6 +282,7 @@ elements.frozen_chocolate_yogurt = {
tempHigh: 0, tempHigh: 0,
stateHigh: "chocolate_yogurt", stateHigh: "chocolate_yogurt",
temp: 0, temp: 0,
isFood: true,
}; };
elements.frying_oil = { elements.frying_oil = {
@ -243,7 +295,13 @@ elements.frying_oil = {
"potato": { elem1: null, elem2: "fries" }, "potato": { elem1: null, elem2: "fries" },
"advanced_dough": { elem1: null, elem2: "churros" }, "advanced_dough": { elem1: null, elem2: "churros" },
"snow": { elem1: null, elem2: "fried_snow" }, "snow": { elem1: null, elem2: "fried_snow" },
} },
tempHigh: 350,
stateHigh: ["fire","steam","steam"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.chicken_nuggets = { elements.chicken_nuggets = {
@ -252,6 +310,12 @@ elements.chicken_nuggets = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.advanced_dough = { elements.advanced_dough = {
@ -273,6 +337,11 @@ elements.fries = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
}; };
elements.fried_snow = { elements.fried_snow = {
@ -281,6 +350,12 @@ elements.fried_snow = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.battery_acid = { elements.battery_acid = {
@ -289,6 +364,12 @@ elements.battery_acid = {
category: "machines", category: "machines",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["steam","dioxin","stench"],
burn:3,
burnTime:500,
burnInto: ["steam","dioxin","stench"],
isFood: true,
}; };
@ -298,6 +379,11 @@ elements.steampunk_pancakes = {
category: "machines", category: "machines",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
//I have no idea why i added this, but when i removed it and started the mod, the mod removed itself. Words can't explain my fucking confusion. //I have no idea why i added this, but when i removed it and started the mod, the mod removed itself. Words can't explain my fucking confusion.
}; };
@ -308,6 +394,11 @@ elements.churros = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
reactions: { reactions: {
"chocolate": { elem1: "chocolate_churros", elem2: null }, "chocolate": { elem1: "chocolate_churros", elem2: null },
"chocolate_sauce": { elem1: "chocolate_churros", elem2: null }, "chocolate_sauce": { elem1: "chocolate_churros", elem2: null },
@ -320,8 +411,27 @@ elements.chocolate_churros = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
}; };
/*elements.color_pick = {
color: ["#ff0000","#ffd100","#00ff4b","#0005ff"],
behavior: [
"CF|CF|CF",
"CF|DL%5|CF",
"CF|CF|CF",
],
category: "tools",
maxSize: 0,
darkText: true,
canPlace: false,
desc: "Use on a pixel to select its element."
};*/
elements.croissant = { elements.croissant = {
color: ["#c68028","#ad7023","#905c1b","#794d16","#674112"], color: ["#c68028","#ad7023","#905c1b","#794d16","#674112"],
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
@ -361,6 +471,12 @@ elements.rose_sauce = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.seasoning = { elements.seasoning = {
@ -369,6 +485,12 @@ elements.seasoning = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.parmesan = { elements.parmesan = {
@ -376,6 +498,12 @@ elements.parmesan = {
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.baking_powder = { elements.baking_powder = {
@ -386,6 +514,12 @@ elements.baking_powder = {
reactions: { reactions: {
"flour": { elem1: null, elem2: "advanced_dough" }, "flour": { elem1: null, elem2: "advanced_dough" },
}, },
tempHigh: 350,
stateHigh: ["fire","fire","ash"],
burn:3,
burnTime:500,
burnInto: ["fire","smoke","smoke","steam","ash"],
isFood: true,
}; };
elements.smashed_ice = { elements.smashed_ice = {
@ -687,6 +821,7 @@ elements.cherry = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: "#450008", breakIntoColor: "#450008",
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#bf4545","#982828"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#bf4545","#982828"] },
@ -701,6 +836,7 @@ elements.strawberry = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#bf0147","#c61548","#cc2857","#c62354","#c11848"], breakIntoColor: ["#bf0147","#c61548","#cc2857","#c62354","#c11848"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#a82953","#941540"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#a82953","#941540"] },
@ -715,6 +851,7 @@ elements.apple = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffda69","#ffdb84"], breakIntoColor: ["#ffda69","#ffdb84"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4ff49","#ffec2f"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4ff49","#ffec2f"] },
@ -729,6 +866,7 @@ elements.green_apple = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffda69","#ffdb84"], breakIntoColor: ["#ffda69","#ffdb84"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4ff49","#ffec2f"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4ff49","#ffec2f"] },
@ -744,6 +882,7 @@ elements.orange = {
breakIntoColor: ["#ffc659","#ffb646","#ffa700","#ff8d00"], breakIntoColor: ["#ffc659","#ffb646","#ffa700","#ff8d00"],
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fbd808","#ff9005"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fbd808","#ff9005"] },
} }
@ -757,6 +896,7 @@ elements.kiwi = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#a9c77e","#bad98f"], breakIntoColor: ["#a9c77e","#bad98f"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#a5d04c","#bbdc79"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#a5d04c","#bbdc79"] },
@ -771,6 +911,7 @@ elements.blueberry = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#8abeee","#8aacf4","#9591ee","#787fdb","#7c74ce"], breakIntoColor: ["#8abeee","#8aacf4","#9591ee","#787fdb","#7c74ce"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#5086c1","#5076b0"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#5086c1","#5076b0"] },
@ -785,6 +926,7 @@ elements.plum = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#bf66c9","#d499db","#eacced"], breakIntoColor: ["#bf66c9","#d499db","#eacced"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#d8b2d8","#b266b2"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#d8b2d8","#b266b2"] },
@ -799,6 +941,7 @@ elements.blackberry = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#a941a1","#ba59b2","#c570bf"], breakIntoColor: ["#a941a1","#ba59b2","#c570bf"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ba59b2","#c570bf"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ba59b2","#c570bf"] },
@ -813,6 +956,7 @@ elements.peach = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#fce5b8","#fcdab8","#fccfb8"], breakIntoColor: ["#fce5b8","#fcdab8","#fccfb8"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffe7dc","#ffdac8"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffe7dc","#ffdac8"] },
@ -827,6 +971,7 @@ elements.lemon = {
breakInto: "juice", breakInto: "juice",
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
breakIntoColor: ["#f8ff80","#f6ff6c","#f5ff57","#f3ff39","#f0ff00"], breakIntoColor: ["#f8ff80","#f6ff6c","#f5ff57","#f3ff39","#f0ff00"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffffd8","#fffecf"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffffd8","#fffecf"] },
@ -842,6 +987,7 @@ elements.green_grape = {
breakIntoColor: ["#5f8536","#7ba84a"], breakIntoColor: ["#5f8536","#7ba84a"],
tempHigh: 256, tempHigh: 256,
stateHigh: "steam", stateHigh: "steam",
isFood: true,
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ecffdc","#c3ffa8"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ecffdc","#c3ffa8"] },
} }
@ -852,6 +998,9 @@ elements.banana = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: "#f0f060", breakIntoColor: "#f0f060",
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fdf8d6","#f9efa6"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fdf8d6","#f9efa6"] },
@ -864,6 +1013,9 @@ elements.blood_orange = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff4600","#ff8353"], breakIntoColor: ["#ff4600","#ff8353"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffc7b4","#ffa485"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffc7b4","#ffa485"] },
@ -876,6 +1028,9 @@ elements.canary_melon = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffff9e","#fffcaa"], breakIntoColor: ["#ffff9e","#fffcaa"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#e5ffb3","#ecff9c"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#e5ffb3","#ecff9c"] },
@ -888,6 +1043,9 @@ elements.honeydew_melon = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#e9ffa3","#f9ffa3"], breakIntoColor: ["#e9ffa3","#f9ffa3"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#e8ffc9","#e8ffc8"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#e8ffc9","#e8ffc8"] },
@ -900,6 +1058,9 @@ elements.cranberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "sauce", breakInto: "sauce",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ba4242","#7a1717"], breakIntoColor: ["#ba4242","#7a1717"],
reactions: { reactions: {
"soda": { elem1: null, elem2: "sprite_cranberry" }, "soda": { elem1: null, elem2: "sprite_cranberry" },
@ -913,6 +1074,9 @@ elements.pitaya = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff84ae","#ffafca"], breakIntoColor: ["#ff84ae","#ffafca"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd4e3","#ffafca"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd4e3","#ffafca"] },
@ -925,6 +1089,9 @@ elements.coconut = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "milk", breakInto: "milk",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#f7e5d8","#fdefe5","#fff7f1"], breakIntoColor: ["#f7e5d8","#fdefe5","#fff7f1"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fff2db","#ffefd4"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fff2db","#ffefd4"] },
@ -937,6 +1104,9 @@ elements.cloudberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffe1c7","#fff9f3"], breakIntoColor: ["#ffe1c7","#fff9f3"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd7ab","#ffcb93"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd7ab","#ffcb93"] },
@ -949,6 +1119,9 @@ elements.crabapple = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff8fcf","#ffb2de"], breakIntoColor: ["#ff8fcf","#ffb2de"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd2ec","#ffb2de"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffd2ec","#ffb2de"] },
@ -961,6 +1134,9 @@ elements.cactus_fruit = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#75d802","#72d202"], breakIntoColor: ["#75d802","#72d202"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#bbffc1","#84ff90"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#bbffc1","#84ff90"] },
@ -973,6 +1149,9 @@ elements.pear = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#c8e39e","#99cc99"], breakIntoColor: ["#c8e39e","#99cc99"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#c3ff9c","#bcff92"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#c3ff9c","#bcff92"] },
@ -985,6 +1164,9 @@ elements.purpleberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#c08cc3","#e49cc2"], breakIntoColor: ["#c08cc3","#e49cc2"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fee6e4","#fbc3c4"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fee6e4","#fbc3c4"] },
@ -997,6 +1179,9 @@ elements.yellowberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#fffec8","#fffdaf"], breakIntoColor: ["#fffec8","#fffdaf"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fffec8","#fffdaf"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fffec8","#fffdaf"] },
@ -1009,6 +1194,9 @@ elements.pomegranate = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ee717f","#e94254"], breakIntoColor: ["#ee717f","#e94254"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4a1a9","#ee717f"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f4a1a9","#ee717f"] },
@ -1021,6 +1209,9 @@ elements.guava = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff5a76","#ff8fa2"], breakIntoColor: ["#ff5a76","#ff8fa2"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f6c8cd","#f2acb5"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f6c8cd","#f2acb5"] },
@ -1033,6 +1224,9 @@ elements.raspberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#f23a72","#fb79a0"], breakIntoColor: ["#f23a72","#fb79a0"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffb1f4","#ff91ce"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffb1f4","#ff91ce"] },
@ -1045,6 +1239,9 @@ elements.gooseberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#8b0031","#920436"], breakIntoColor: ["#8b0031","#920436"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f1ffdb","#e3ffb7"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#f1ffdb","#e3ffb7"] },
@ -1057,6 +1254,9 @@ elements.fig = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff4a4a","#ea3838"], breakIntoColor: ["#ff4a4a","#ea3838"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ff8d8d","#ffabab"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ff8d8d","#ffabab"] },
@ -1069,6 +1269,9 @@ elements.durian = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#faffaf","#fbffbf"], breakIntoColor: ["#faffaf","#fbffbf"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#feffe7","#f9ffb3"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#feffe7","#f9ffb3"] },
@ -1081,6 +1284,9 @@ elements.passionfruit = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffdede","#ffe4e4"], breakIntoColor: ["#ffdede","#ffe4e4"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#d8adce","#c485b6"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#d8adce","#c485b6"] },
@ -1093,6 +1299,9 @@ elements.starfruit = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#f2d553","#f5dd75"], breakIntoColor: ["#f2d553","#f5dd75"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#faeeba","#f7e698"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#faeeba","#f7e698"] },
@ -1105,6 +1314,9 @@ elements.rambutan = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#faffaf","#fbffbf"], breakIntoColor: ["#faffaf","#fbffbf"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fde0e0","#f4c1c1"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fde0e0","#f4c1c1"] },
@ -1117,6 +1329,9 @@ elements.nance = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffff66","#ffff99"], breakIntoColor: ["#ffff66","#ffff99"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fffee0","#fffec8"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#fffee0","#fffec8"] },
@ -1129,6 +1344,9 @@ elements.nectarine = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ffbd8b","#ffdbc0"], breakIntoColor: ["#ffbd8b","#ffdbc0"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffc3ad","#ffa584"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#ffc3ad","#ffa584"] },
@ -1141,6 +1359,9 @@ elements.loganberry = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff8f8f","#ffb7b7"], breakIntoColor: ["#ff8f8f","#ffb7b7"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#9c91a5","#bdb5c3"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#9c91a5","#bdb5c3"] },
@ -1153,6 +1374,9 @@ elements.currant = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#ff878f","#ffbcc0"], breakIntoColor: ["#ff878f","#ffbcc0"],
reactions: { reactions: {
"sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#cc6b69","#bb3a37"] }, "sugar": { elem1: "jelly", elem2: null, tempMin: 100, color1: ["#cc6b69","#bb3a37"] },
@ -1175,6 +1399,9 @@ elements.mint = {
behavior: behaviors.STURDYPOWDER, behavior: behaviors.STURDYPOWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
reactions: { reactions: {
"cream": { elem1: null, elem2: "toorhpaste" }, "cream": { elem1: null, elem2: "toorhpaste" },
"ice_cream": { elem1: null, elem2: "mint_ice_cream" }, "ice_cream": { elem1: null, elem2: "mint_ice_cream" },
@ -1187,6 +1414,9 @@ elements.broccoli = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#00b215","#0b8500"], breakIntoColor: ["#00b215","#0b8500"],
}; };
@ -1217,6 +1447,9 @@ elements.hot_pepper = {
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
reactions: { reactions: {
"sauce": { elem1: null, elem2: "hot_sauce" }, "sauce": { elem1: null, elem2: "hot_sauce" },
} }
@ -1236,6 +1469,9 @@ elements.squash = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#efbe79","#ffd599"], breakIntoColor: ["#efbe79","#ffd599"],
}; };
@ -1245,6 +1481,9 @@ elements.zuchinni = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
breakIntoColor: ["#80a568","#a3c88c"], breakIntoColor: ["#80a568","#a3c88c"],
}; };
@ -1254,6 +1493,9 @@ elements.olive = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "olive_oil", breakInto: "olive_oil",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.eggplant = { elements.eggplant = {
@ -1263,6 +1505,9 @@ elements.eggplant = {
state: "solid", state: "solid",
breakInto: "juice", breakInto: "juice",
breakIntoColor: ["#674ea7","#351c75"], breakIntoColor: ["#674ea7","#351c75"],
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.onion = { elements.onion = {
@ -1276,6 +1521,9 @@ elements.onion = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: ["stench", null, null, null, null], breakInto: ["stench", null, null, null, null],
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.cinnamon = { elements.cinnamon = {
@ -1283,6 +1531,9 @@ elements.cinnamon = {
behavior: behaviors.STURDYPOWDER, behavior: behaviors.STURDYPOWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.garlic = { elements.garlic = {
@ -1291,6 +1542,9 @@ elements.garlic = {
category: "food", category: "food",
state: "solid", state: "solid",
breakInto: "garlic_clove", breakInto: "garlic_clove",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.garlic_clove = { elements.garlic_clove = {
@ -1299,6 +1553,9 @@ elements.garlic_clove = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.carrot = { elements.carrot = {
@ -1312,6 +1569,9 @@ elements.carrot = {
burnTime: 300, burnTime: 300,
breakInto: "juice", breakInto: "juice",
breakIntoColor: "#f1b956", breakIntoColor: "#f1b956",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.asparagus = { elements.asparagus = {
@ -1327,6 +1587,9 @@ elements.asparagus = {
burnTime: 300, burnTime: 300,
breakInto: "juice", breakInto: "juice",
breakIntoColor: "#c9ddbb", breakIntoColor: "#c9ddbb",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.roasted_asparagus = { elements.roasted_asparagus = {
@ -1343,6 +1606,9 @@ elements.roasted_asparagus = {
burnInto: "ash", burnInto: "ash",
burn: 20, burn: 20,
burnTime: 300, burnTime: 300,
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.oreo = { elements.oreo = {
@ -1350,6 +1616,9 @@ elements.oreo = {
behavior: behaviors.STURDYPOWDER, behavior: behaviors.STURDYPOWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
reactions: { reactions: {
"toorhpaste": { elem1: "poison_oreo", elem2: null }, "toorhpaste": { elem1: "poison_oreo", elem2: null },
} }
@ -1361,6 +1630,9 @@ elements.poison_oreo = {
category: "food", category: "food",
state: "solid", state: "solid",
hidden: "TRUE", hidden: "TRUE",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.sprinkles = { elements.sprinkles = {
@ -1368,6 +1640,9 @@ elements.sprinkles = {
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
category: "food", category: "food",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.whipped_cream = { elements.whipped_cream = {
@ -1378,9 +1653,7 @@ elements.whipped_cream = {
hidden: "TRUE", hidden: "TRUE",
tempHigh: 130, tempHigh: 130,
stateHigh: "steam", stateHigh: "steam",
reactions: { isFood: true,
"coffee": { elem1: null, elem2: "cream_coffee" },
}
}; };
elements.olive_oil = { elements.olive_oil = {
@ -1391,18 +1664,9 @@ elements.olive_oil = {
state: "liquid", state: "liquid",
burn: 10, burn: 10,
burnTime: 300, burnTime: 300,
}; tempHigh: 256,
stateHigh: "steam",
elements.cream_coffee = { isFood: true,
color: ["#dbc1ac","#967259","#634832"],
behavior: behaviors.LIQUID,
category: "food",
state: "solid",
hidden: "TRUE",
tempLow: 0,
stateLow: "coffee_ice",
tempHigh: 130,
stateHigh: ["steam","fragrance"],
}; };
elements.seafoam = { elements.seafoam = {
@ -1417,6 +1681,9 @@ elements.pipis = {
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
category: "life", category: "life",
state: "solid", state: "solid",
tempHigh: 256,
stateHigh: "steam",
isFood: true,
}; };
elements.frog_bomb = { elements.frog_bomb = {
@ -1490,6 +1757,39 @@ elements.holy_hand_grenade = {
cooldown: defaultCooldown cooldown: defaultCooldown
}, },
elements.unholy_feet_bomb = {
color: ["#661a0e","#6b1f13","#803226"],
behavior: [
"XX|EX:20>curse,fire%1|XX",
"XX|XX|XX",
"M2|M1 AND EX:20>curse,fire%1|M2",
],
category: "weapons",
state: "solid",
density: 1300,
tempHigh: 1455.5,
stateHigh: "curse",
excludeRandom: true,
cooldown: defaultCooldown,
},
//for(i = 1, i++, i>10){
//}
/*
for (let i = 0; i < 100; i++) {
if(unholy_feet_bomb.hidden == false) {
if(curse.hidden == false) {
if(holy_hand_grenade.hidden == false) {
unholy_feet_bomb.hidden = false;
}
}
}
i = 0;
}
*/
elements.chocolate_fountain = { elements.chocolate_fountain = {
color: "#3e1d07", color: "#3e1d07",
behavior: [ behavior: [
@ -1700,6 +2000,7 @@ elements.slushy_ice = {
state: "solid", state: "solid",
density: 917, density: 917,
breakInto: "smashed_ice", breakInto: "smashed_ice",
isFood: true,
}; };
elements.toorhpaste = { elements.toorhpaste = {
@ -1709,7 +2010,10 @@ elements.toorhpaste = {
state: "solid", state: "solid",
reactions: { reactions: {
"juice": { elem1: "poison", elem2: null }, "juice": { elem1: "poison", elem2: null },
} },
tempHigh: 170,
stateHigh: "steam",
isFood: true,
}; };
if (!elements.lettuce.reactions) elements.lettuce.reactions = {}; if (!elements.lettuce.reactions) elements.lettuce.reactions = {};