module Base
{
	craftRecipe OpenBoxOfInstantTea
    	{
        timedAction = UnPackBox,
        time = 30,
        tags = InHandCraft;Cooking;CanBeDoneInDark,
        category = Packing,
        inputs
        {
            item 1 [Base.InstantTeaBox],
        }
        outputs
        {
            item  1 Base.InstantTea,
	    item  1 Base.InstantTeaBlack,
	    item  1 Base.InstantTeaBerries,
	    item  1 Base.InstantTeaLemon,
	    item  1 Base.InstantTeaGreen,
        }
	}

	craftRecipe PackBoxOfInstantTea
	{
        timedAction = PackingBox,
		time = 50,
		Tags = InHandCraft;Cooking;CanBeDoneInDark,
        category = Packing,
		inputs
		{
		item  1 [Base.InstantTea] mode:destroy flags[AllowFavorite;InheritFavorite;ItemCount],
	    	item  1 [Base.InstantTeaBlack] mode:destroy flags[AllowFavorite;InheritFavorite;ItemCount],
	   	item  1 [Base.InstantTeaBerries] mode:destroy flags[AllowFavorite;InheritFavorite;ItemCount],
	   	item  1 [Base.InstantTeaLemon] mode:destroy flags[AllowFavorite;InheritFavorite;ItemCount],
	   	item  1 [Base.InstantTeaGreen] mode:destroy flags[AllowFavorite;InheritFavorite;ItemCount],
		}
		outputs
		{
			item 1 Base.InstantTeaBox,
		}
	}

        }
}