module Base
{

	recipe Make Milk From Powdered Milk
   {
      CannedMilkOpen,
      Water=7,

      Result:CannedMilkMixed,
      Time:80.0,
      Category:Cooking,
		OnGiveXP:Recipe.OnGiveXP.Cooking10,
   }

	recipe Stack 3K Rubles
   {
      Money_100=30,
      RubberBand,

      Result:Stack_100,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 6K Rubles
   {
      Money_200=30,
      RubberBand,

      Result:Stack_200,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 15K Rubles
   {
      Money_500=30,
      RubberBand,

      Result:Stack_500,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 30K Rubles
   {
      Money=30,
      RubberBand,

      Result:Stack_1000,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 150K Rubles
   {
      Money_5000=30,
      RubberBand,

      Result:Stack_5000,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 300K Rubles
   {
      Money_10_000=30,
      RubberBand,

      Result:Stack_10_000,
      Time:80.0,
      Category:Cooking,
   }
	recipe Stack 1.5M Rubles
   {
      Money_50_000=30,
      RubberBand,

      Result:Stack_50_000,
      Time:80.0,
      Category:Cooking,
   }

	recipe Unstack 3K Rubles
   {
      Stack_100,

      Result:Money_100=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 6K Rubles
   {
      Stack_200,

      Result:Money_200=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 15K Rubles
   {
      Stack_500,

      Result:Money_500=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 30K Rubles
   {
      Stack_1000,

      Result:Money=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 150K Rubles
   {
      Stack_5000,

      Result:Money_5000=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 300K Rubles
   {
      Stack_10_000,

      Result:Money_10_000=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }
	recipe Unstack 1.5M Rubles
   {
      Stack_50_000,

      Result:Money_50_000=30,
      Time:80.0,
      Category:Cooking,
      OnCreate:Stacks_GiveRubberband,
   }

   recipe Make Pipe bomb
    {
       UZRG,
       BodyRGD,

       Result:PipeBomb,
       Time:100.0,
       NeedToBeLearn:false,
       Category:Engineer,
    }
}