Skip to content
Snippets Groups Projects
item_info_debug.yaml 3.61 KiB
Newer Older
  • Learn to ignore specific revisions
  • CuttingBoard:
      type: Equipment
    
    Sink:
      type: Equipment
    
    Stove:
      type: Equipment
    
    
    DeepFryer:
      type: Equipment
    
    Oven:
      type: Equipment
    
    
    Pot:
      type: Equipment
      equipment: Stove
    
    Pan:
      type: Equipment
      equipment: Stove
    
    
    Basket:
      type: Equipment
      equipment: DeepFryer
    
    Peel:
      type: Equipment
      equipment: Oven
    
    
    DirtyPlate:
      type: Equipment
    
    Plate:
      type: Equipment
      needs: [ DirtyPlate ]
    
      seconds: 0.1
    
      equipment: Sink
    
    # --------------------------------------------------------------------------------
    
    Tomato:
      type: Ingredient
    
    Lettuce:
      type: Ingredient
    
    Onion:
      type: Ingredient
    
    Meat:
      type: Ingredient
    
    Bun:
      type: Ingredient
    
    
    Potato:
      type: Ingredient
    
    Fish:
      type: Ingredient
    
    Dough:
      type: Ingredient
    
    Cheese:
      type: Ingredient
    
    Sausage:
      type: Ingredient
    
    
    ChoppedTomato:
      type: Ingredient
      needs: [ Tomato ]
      seconds: 0.1
      equipment: CuttingBoard
    
    ChoppedLettuce:
      type: Ingredient
      needs: [ Lettuce ]
      seconds: 0.1
      equipment: CuttingBoard
    
    ChoppedOnion:
      type: Ingredient
      needs: [ Onion ]
      seconds: 0.1
      equipment: CuttingBoard
    
    
      type: Ingredient
      needs: [ Meat ]
      seconds: 0.1
      equipment: CuttingBoard
    
    
      type: Ingredient
      needs: [ Potato ]
      seconds: 0.1
      equipment: CuttingBoard
    
    ChoppedFish:
      type: Ingredient
      needs: [ Fish ]
      seconds: 0.1
      equipment: CuttingBoard
    
    PizzaBase:
      type: Ingredient
      needs: [ Dough ]
      seconds: 0.1
      equipment: CuttingBoard
    
    GratedCheese:
      type: Ingredient
      needs: [ Cheese ]
      seconds: 0.1
      equipment: CuttingBoard
    
    ChoppedSausage:
      type: Ingredient
      needs: [ Sausage ]
      seconds: 0.1
      equipment: CuttingBoard
    
    
    CookedPatty:
      type: Ingredient
    
      seconds: 0.1
    
    # --------------------------------------------------------------------------------
    
    Chips:
      type: Meal
    
      seconds: 0.1
    
      equipment: Basket
    
    FriedFish:
    
      seconds: 0.1
      needs: [ ChoppedFish ]
      equipment: Basket
    
    
    
    Burger:
      type: Meal
      needs: [ Bun, ChoppedLettuce, ChoppedTomato, CookedPatty ]
      equipment: ~
    
    
    BurgerWithChips:
      type: Meal
      needs: [ Bun, ChoppedLettuce, ChoppedTomato, CookedPatty, Chips ]
      equipment: ~
    
    
    Salad:
      type: Meal
      needs: [ ChoppedLettuce, ChoppedTomato ]
      equipment: ~
    
    TomatoSoup:
      type: Meal
      needs: [ ChoppedTomato, ChoppedTomato, ChoppedTomato ]
    
      seconds: 0.1
    
      equipment: Pot
    
    OnionSoup:
      type: Meal
      needs: [ ChoppedOnion, ChoppedOnion, ChoppedOnion ]
    
      seconds: 0.1
    
    
    FishAndChips:
      type: Meal
    
      equipment: ~
    
    Pizza:
      type: Meal
      needs: [ PizzaBase, ChoppedTomato, GratedCheese, ChoppedSausage ]
      seconds: 0.1
      equipment: Peel
    
    
    # --------------------------------------------------------------------------------
    
    BurntCookedPatty:
      type: Waste
    
      needs: [ CookedPatty ]
      equipment: Pan
    
    BurntChips:
      type: Waste
    
      needs: [ Chips ]
      equipment: Basket
    
    BurntFriedFish:
      type: Waste
    
      needs: [ FriedFish ]
      equipment: Basket
    
    BurntTomatoSoup:
      type: Waste
      needs: [ TomatoSoup ]
    
      equipment: Pot
    
    BurntOnionSoup:
      type: Waste
      needs: [ OnionSoup ]
    
      equipment: Pot
    
    BurntPizza:
      type: Waste
      needs: [ Pizza ]
    
    # --------------------------------------------------------------------------------
    
    Fire:
      type: Effect
    
      needs: [ BurntCookedPatty, BurntChips, BurntFriedFish, BurntTomatoSoup, BurntOnionSoup, BurntPizza ]
      manager: FireManager
      effect_type: Unusable
    
    # --------------------------------------------------------------------------------
    
    Extinguisher:
      type: Tool
      seconds: 0.1
      needs: [ Fire ]