module HMB
{
    imports
	{
		Base
	}

	recipe Prepare Homemade Bleach
	{
		VodkaFull=1,
		BleachEmpty,
		Water=5,
		Vinegar=3,
		
		Result:HomemadeBleach,
		Time:120.0,
		Sound:PutItemInBag,
		Category:Cooking,
		OnGiveXP:Recipe.OnGiveXP.Cooking10,
		OnCreate:giveVodkaEmpty,
	}

	recipe Prepare Homemade Vinegar Lemon Bleach
	{
		Vinegar=5,
		BleachEmpty,
		Water=5,
		Lemon=2,
		
		Result:HomemadeBleachVinegar,
		Time:120.0,
		Sound:PutItemInBag,
		Category:Cooking,
		OnGiveXP:Recipe.OnGiveXP.Cooking10,
		
	}

    recipe Open Box of Vodka
    {
		VodkaBox,

		Result:VodkaFull=12,
		Time:120.0,
		Sound:PutItemInBag,
		Category:Cooking,
    }

   recipe Open Box of Vodka Bottles Filled with Water
   {
		VodkaWaterBox,

		Result:VodkaWaterFull=12,
		Time:120.0,
		Sound:PutItemInBag,
		Category:Cooking,
   }

   recipe Box Up Vodka
    {
		VodkaFull=12,

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

    recipe Box Up Vodka Bottles Filled with Water
    {
		VodkaWaterFull=144,

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

}