```java elements.toothpaste = { color: "#08c9a9", behavior:behaviors.LIQUID, category: "

elements.toothpaste = {
    color: "#08c9a9",
    behavior:behaviors.LIQUID,
    category: "oral",
    state: "liquid",
}
elements.gums = {
    color: "#ba044a",
    behavior:behaviors.STURDYPOWDER,
    category: "oral",
    state: "solid",
    reactions: {
        "calcium": { elem1:"gums", elem2:"teeth" }
        "mushroom_spore": { elem1:"infection", elem2:"infection" }
    }
}
elements.teeth = {
    color: "#ba044a",
    behavior:behaviors.WALL,
    category: "oral",
    state: "solid",
    reactions: {
        "mayo": { elem1:"yellow_teeth", elem2:"yellow_teeth" }
        "sugar": { elem1:"cavity", elem2:"blood" }
        "ice_cream": { elem1:"cavity", elem2:"blood" }
    }
}
elements.yellow_teeth = {
    color: "#fcf586",
    behavior:behaviors.WALL,
    category: "oral",
    state: "solid",
    reactions: {
        "toothpaste": { elem1:"teeth", elem2:"light" }
    }
}
elements.golden_teeth = {
    color: "#ebb326",
    behavior:behaviors.WALL,
    category: "oral",
    state: "solid",
}
elements.cavity = {
    color: "#222222",
    behavior:behaviors.STURDYPOWDER,
    category: "oral",
    state: "solid",
    reactions: {
        "gold_coin": { elem1:"golden_teeth", elem2:"light" }
    }
}
elements.stripe = {
    color: "#ff0000",
    behavior:behaviors.LIQUID,
    category: "oral",
    state: "liquid",
    reactions: {
        "baking_soda": { elem1:"stripe_dough", elem2:"stripe_dough" }
    }
}
elements.stripe_dough = {
    color: "#fc5d5d",
    behavior:behaviors.STURDYPOWDER,
    category: "oral",
    state: "solid",
    reactions: {
        "jelly": { elem1:"toothpaste", elem2:"toothpaste" }
    }
};
Was this page helpful?