commit
d7293090cd
|
|
@ -6,6 +6,14 @@ elements.fruit_slushy = {
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.mold = {
|
||||||
|
color: "#86ab29",
|
||||||
|
behavior: behaviors.POWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
elements.chocolate_slushy = {
|
elements.chocolate_slushy = {
|
||||||
color: "#4f2e16",
|
color: "#4f2e16",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
|
|
@ -22,6 +30,22 @@ elements.chocolate_sauce = {
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.chocolate_ice_cream = {
|
||||||
|
color: "#704b3a",
|
||||||
|
behavior: behaviors.STURDYPOWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
|
elements.fruit_ice_cream = {
|
||||||
|
color: "#de6ab7",
|
||||||
|
behavior: behaviors.STURDYPOWDER,
|
||||||
|
category: "food",
|
||||||
|
state: "solid",
|
||||||
|
hidden: "TRUE",
|
||||||
|
};
|
||||||
|
|
||||||
elements.cooking_oil = {
|
elements.cooking_oil = {
|
||||||
color: "#c4ab4f",
|
color: "#c4ab4f",
|
||||||
behavior: behaviors.LIQUID,
|
behavior: behaviors.LIQUID,
|
||||||
|
|
@ -35,7 +59,7 @@ elements.cooking_oil = {
|
||||||
|
|
||||||
elements.chicken_nuggets = {
|
elements.chicken_nuggets = {
|
||||||
color: "#967242",
|
color: "#967242",
|
||||||
behavior: behaviors.STURDYPOWDER,
|
behavior: behaviors.POWDER,
|
||||||
category: "food",
|
category: "food",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
|
|
@ -43,7 +67,7 @@ elements.chicken_nuggets = {
|
||||||
|
|
||||||
elements.fries = {
|
elements.fries = {
|
||||||
color: "#ebba34",
|
color: "#ebba34",
|
||||||
behavior: behaviors.STURDYPOWDER,
|
behavior: behaviors.POWDER,
|
||||||
category: "food",
|
category: "food",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
hidden: "TRUE",
|
hidden: "TRUE",
|
||||||
|
|
@ -68,6 +92,11 @@ elements.smashed_ice = {
|
||||||
"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" },
|
||||||
},
|
},
|
||||||
|
density: 100,
|
||||||
|
tempHigh: 25,
|
||||||
|
stateHigh: "water",
|
||||||
|
tempLow: -50,
|
||||||
|
stateLow: "snow",
|
||||||
};
|
};
|
||||||
|
|
||||||
elements.moss = {
|
elements.moss = {
|
||||||
|
|
@ -95,9 +124,74 @@ elements.moth = {
|
||||||
behavior: behaviors.BOUNCY,
|
behavior: behaviors.BOUNCY,
|
||||||
category: "life",
|
category: "life",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
|
burn: 95,
|
||||||
|
burnTime: 25,
|
||||||
|
density: 600,
|
||||||
|
breakInto: "dead_bug",
|
||||||
|
tempHigh: 100,
|
||||||
|
stateHigh: "ash",
|
||||||
|
tempLow: 0,
|
||||||
|
stateLow: "dead_bug",
|
||||||
};
|
};
|
||||||
|
|
||||||
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.ketchup.reactions) elements.ketchup.reactions = {};
|
if (!elements.ketchup.reactions) elements.ketchup.reactions = {};
|
||||||
elements.ketchup.reactions.mayo = { elem1: "rose_sauce", elem2: null }
|
elements.ketchup.reactions.mayonnaise = { elem1: "rose_sauce", elem2: null }
|
||||||
|
|
||||||
|
|
||||||
|
if (!elements.bread.reactions) elements.bread.reactions = {};
|
||||||
|
elements.bread.reactions.rotten_cheese = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.bread.reactions) elements.bread.reactions = {};
|
||||||
|
elements.bread.reactions.dirty_water = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.toast.reactions) elements.toast.reactions = {};
|
||||||
|
elements.toast.reactions.rotten_cheese = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.toast.reactions) elements.toast.reactions = {};
|
||||||
|
elements.toast.reactions.dirty_water = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.baked_batter.reactions) elements.baked_batter.reactions = {};
|
||||||
|
elements.baked_batter.reactions.rotten_cheese = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.baked_batter.reactions) elements.baked_batter.reactions = {};
|
||||||
|
elements.baked_batter.reactions.dirty_water = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.bread.reactions) elements.bread.reactions = {};
|
||||||
|
elements.bread.reactions.worm = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.bread.reactions) elements.bread.reactions = {};
|
||||||
|
elements.bread.reactions.mud = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.toast.reactions) elements.toast.reactions = {};
|
||||||
|
elements.toast.reactions.worm = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.toast.reactions) elements.toast.reactions = {};
|
||||||
|
elements.toast.reactions.mud = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.baked_batter.reactions) elements.baked_batter.reactions = {};
|
||||||
|
elements.baked_batter.reactions.worm = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.baked_batter.reactions) elements.baked_batter.reactions = {};
|
||||||
|
elements.baked_batter.reactions.mud = { elem1: "mold", elem2: null }
|
||||||
|
|
||||||
|
elements.sugar_ice.breakInto = "smashed_ice"
|
||||||
|
|
||||||
|
elements.chocolate.breakInto = "chocolate_sauce"
|
||||||
|
|
||||||
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
elements.ice_cream.reactions.juice = { elem1: "fruit_ice_cream", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
elements.ice_cream.reactions.grape = { elem1: "fruit_ice_cream", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
elements.ice_cream.reactions.chocolate = { elem1: "chocolate_ice_cream", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
elements.ice_cream.reactions.chocolate_sauce = { elem1: "chocolate_ice_cream", elem2: null }
|
||||||
|
|
||||||
|
if (!elements.ice_cream.reactions) elements.ice_cream.reactions = {};
|
||||||
|
elements.ice_cream.reactions.melted_chocolate = { elem1: "chocolate_ice_cream", elem2: null }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue