Update 1.4
This commit is contained in:
parent
4384034533
commit
c6ddef8389
|
|
@ -1,3 +1,19 @@
|
||||||
|
elements.beer = {
|
||||||
|
color: "#ffc64a",
|
||||||
|
behavior: behaviors.LIQUID,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.root_beer = {
|
||||||
|
color: "#9e7723",
|
||||||
|
behavior: behaviors.LIQUID,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
elements.fruit_slushy = {
|
elements.fruit_slushy = {
|
||||||
color: "#b867cf",
|
color: "#b867cf",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
|
|
@ -72,6 +88,9 @@ elements.frozen_fruit_yogurt = {
|
||||||
category: "food",
|
category: "food",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
|
density: 902,
|
||||||
|
tempHigh: 0,
|
||||||
|
stateHigh: "fruit_yogurt",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.frozen_chocolate_yogurt = {
|
elements.frozen_chocolate_yogurt = {
|
||||||
|
|
@ -80,6 +99,9 @@ elements.frozen_chocolate_yogurt = {
|
||||||
category: "food",
|
category: "food",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
|
density: 902,
|
||||||
|
tempHigh: 0,
|
||||||
|
stateHigh: "chocolate_yogurt",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.cooking_oil = {
|
elements.cooking_oil = {
|
||||||
|
|
@ -90,6 +112,8 @@ elements.cooking_oil = {
|
||||||
reactions: {
|
reactions: {
|
||||||
"meat": { elem1: null, elem2: "chicken_nuggets" },
|
"meat": { elem1: null, elem2: "chicken_nuggets" },
|
||||||
"potato": { elem1: null, elem2: "fries" },
|
"potato": { elem1: null, elem2: "fries" },
|
||||||
|
"advanced_dough": { elem1: null, elem2: "churros" },
|
||||||
|
"snow": { elem1: null, elem2: "fried_snow" },
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -101,6 +125,19 @@ elements.chicken_nuggets = {
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.advanced_dough = {
|
||||||
|
color: "#dbbc72",
|
||||||
|
behavior: behaviors.STURDYPOWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
tempHigh: 94,
|
||||||
|
stateHigh: "croissant",
|
||||||
|
reactions: {
|
||||||
|
"electric": { elem1: "steampunk_pancakes", elem2: null },
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
elements.fries = {
|
elements.fries = {
|
||||||
color: "#ebba34",
|
color: "#ebba34",
|
||||||
behavior: behaviors.POWDER,
|
behavior: behaviors.POWDER,
|
||||||
|
|
@ -109,14 +146,75 @@ elements.fries = {
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.rose_sauce = {
|
elements.fried_snow = {
|
||||||
color: "#f0340e",
|
color: "#a16f37",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.POWDER,
|
||||||
category: "food",
|
category: "food",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.steampunk_pancakes = {
|
||||||
|
color: "#252a33",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "machines",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.churros = {
|
||||||
|
color: "#c29a3c",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
reactions: {
|
||||||
|
"chocolate": { elem1: "chocolate_churros", elem2: null },
|
||||||
|
"chocolate_sauce": { elem1: "chocolate_churros", elem2: null },
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.chocolate_churros = {
|
||||||
|
color: "#1c0c01",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.croissant = {
|
||||||
|
color: "#e0c46e",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
breakInto: "crumb",
|
||||||
|
tempHigh: 550,
|
||||||
|
stateHigh: "ash",
|
||||||
|
burnInto: "smoke"
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.eggy_dough = {
|
||||||
|
color: "#c4ad7c",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
tempHigh: 75,
|
||||||
|
stateHigh: "french_toast",
|
||||||
|
burnInto: "smoke"
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.french_toast = {
|
||||||
|
color: "#ab8d4f",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
breakInto: "crumb",
|
||||||
|
tempHigh: 550,
|
||||||
|
stateHigh: "ash",
|
||||||
|
burnInto: "smoke"
|
||||||
|
};
|
||||||
|
|
||||||
elements.rose_sauce = {
|
elements.rose_sauce = {
|
||||||
color: "#f0340e",
|
color: "#f0340e",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
|
|
@ -125,6 +223,31 @@ elements.rose_sauce = {
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.seasoning = {
|
||||||
|
color: "#734631",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.parmesan = {
|
||||||
|
color: "#e0c66e",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.baking_powder = {
|
||||||
|
color: "#fffaed",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
reactions: {
|
||||||
|
"flour": { elem1: null, elem2: "advanced_dough" },
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
elements.smashed_ice = {
|
elements.smashed_ice = {
|
||||||
color: "#c3d4e6",
|
color: "#c3d4e6",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
|
|
@ -134,6 +257,10 @@ elements.smashed_ice = {
|
||||||
"grape": { elem1: null, elem2: "fruit_slushy" },
|
"grape": { elem1: null, elem2: "fruit_slushy" },
|
||||||
"green_grape": { elem1: null, elem2: "fruit_slushy" },
|
"green_grape": { elem1: null, elem2: "fruit_slushy" },
|
||||||
"cherry": { elem1: null, elem2: "fruit_slushy" },
|
"cherry": { elem1: null, elem2: "fruit_slushy" },
|
||||||
|
"apple": { elem1: null, elem2: "fruit_slushy" },
|
||||||
|
"orange": { elem1: null, elem2: "fruit_slushy" },
|
||||||
|
"kiwi": { elem1: null, elem2: "fruit_slushy" },
|
||||||
|
"strawberry": { elem1: null, elem2: "fruit_slushy"},
|
||||||
"chocolate": { elem1: null, elem2: "chocolate_slushy" },
|
"chocolate": { elem1: null, elem2: "chocolate_slushy" },
|
||||||
"juice": { elem1: null, elem2: "fruit_slushy" },
|
"juice": { elem1: null, elem2: "fruit_slushy" },
|
||||||
"chocolate_sauce": { elem1: null, elem2: "chocolate_slushy" },
|
"chocolate_sauce": { elem1: null, elem2: "chocolate_slushy" },
|
||||||
|
|
@ -189,6 +316,29 @@ elements.cherry = {
|
||||||
tempHigh: 256,
|
tempHigh: 256,
|
||||||
stateHigh: "steam",
|
stateHigh: "steam",
|
||||||
breakIntoColor: "#450008",
|
breakIntoColor: "#450008",
|
||||||
|
reactionsColor: "#450008",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.strawberry = {
|
||||||
|
color: "#ff0033",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
breakInto: "juice",
|
||||||
|
tempHigh: 256,
|
||||||
|
stateHigh: "steam",
|
||||||
|
breakIntoColor: "#bd0f32",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.apple = {
|
||||||
|
color: "#f21313",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
breakInto: "juice",
|
||||||
|
tempHigh: 256,
|
||||||
|
stateHigh: "steam",
|
||||||
|
breakIntoColor: "#ffd500",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.orange = {
|
elements.orange = {
|
||||||
|
|
@ -199,7 +349,6 @@ elements.orange = {
|
||||||
breakInto: "juice",
|
breakInto: "juice",
|
||||||
tempHigh: 256,
|
tempHigh: 256,
|
||||||
stateHigh: "steam",
|
stateHigh: "steam",
|
||||||
breakIntoColor: "#d69c4f",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.kiwi = {
|
elements.kiwi = {
|
||||||
|
|
@ -224,11 +373,43 @@ elements.green_grape = {
|
||||||
stateHigh: "steam",
|
stateHigh: "steam",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.oreo = {
|
||||||
|
color: "#120600",
|
||||||
|
behavior: behaviors.STURDYPOWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.toorhpaste = {
|
||||||
|
color: "#7dfff2",
|
||||||
|
behavior: behaviors.LIQUID,
|
||||||
|
category: "liquids",
|
||||||
|
state: "solid",
|
||||||
|
};
|
||||||
|
|
||||||
if (!elements.lettuce.reactions) elements.lettuce.reactions = {};
|
if (!elements.lettuce.reactions) elements.lettuce.reactions = {};
|
||||||
elements.lettuce.reactions.ice_cream = { elem1: "moss", elem2: null }
|
elements.lettuce.reactions.ice_cream = { elem1: "moss", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.advanced_dough.reactions) elements.advanced_dough.reactions = {};
|
||||||
|
elements.advanced_dough.reactions.yolk = { elem1: "eggy_dough", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.yeast.reactions) elements.yeast.reactions = {};
|
||||||
|
elements.yeast.reactions.flour = { elem1: "beer", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.beer.reactions) elements.beer.reactions = {};
|
||||||
|
elements.beer.reactions.fiber = { elem1: "root_beer", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.cheese.reactions) elements.cheese.reactions = {};
|
||||||
|
elements.cheese.reactions.seasoning = { elem1: "parmesan", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.sodium.reactions) elements.sodium.reactions = {};
|
||||||
|
elements.sodium.reactions.neutral_acid = { elem1: "baking_powder", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.toast.reactions) elements.toast.reactions = {};
|
||||||
|
elements.toast.reactions.chocolate = { elem1: "oreo", elem2: null }
|
||||||
|
|
||||||
if (!elements.ketchup.reactions) elements.ketchup.reactions = {};
|
if (!elements.ketchup.reactions) elements.ketchup.reactions = {};
|
||||||
elements.ketchup.reactions.yolk = { elem1: "rose_sauce", elem2: null }
|
elements.ketchup.reactions.mayo = { elem1: "rose_sauce", elem2: null }
|
||||||
|
|
||||||
|
|
||||||
if (!elements.bread.reactions) elements.bread.reactions = {};
|
if (!elements.bread.reactions) elements.bread.reactions = {};
|
||||||
|
|
@ -269,6 +450,8 @@ elements.baked_batter.reactions.mud = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
elements.sugar_ice.breakInto = "smashed_ice"
|
elements.sugar_ice.breakInto = "smashed_ice"
|
||||||
|
|
||||||
|
elements.herb.breakInto = "seasoning"
|
||||||
|
|
||||||
elements.chocolate.breakInto = "chocolate_sauce"
|
elements.chocolate.breakInto = "chocolate_sauce"
|
||||||
|
|
||||||
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue