module FB_BEN_EN
{
   imports
   {
      Base
   }

   recipe NRG - Energy Drink
   {
      destroy TinCanEmpty/NRGEmpty/PopEmpty,
      destroy Teabag2=1,
      destroy Coffee2=1,
      destroy Sugar=1,
      destroy Water=10,

      Result:NRG,
      Time:120.0,
      Sound:PutItemInBag,
      Category:Cooking,
   }

   recipe Crush can
   {
      PopEmpty/NRGEmpty,

      Result:CrushedCan,
      Sound:CrushSodaCan,
      Time:10,
   }

   recipe Recycle can
   {
      CrushedCan=8,
      keep [Recipe.GetItemTypes.Hammer],

      Result:ScrapMetal,
      Sound:CrushSodaCan,
      Time:30,
   }

   recipe Open box of NRG - Energy Drinks
   {
      NRGBox,

      Result:NRG=6,
      Time:120.0,
      Sound:PutItemInBag,
      Category:Cooking,
   }

   recipe Packing NRG - Energy Drinks
   {
      NRG=6,

      Result:NRGBox,
      Time:120.0,
      Sound:PutItemInBag,
      Category:Cooking,
   }
}