module DTFModule
{
	imports
	{
		Base
	}
	
	craftRecipe BundleRadishes
	{
		timedAction = Making,
		time = 10,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 12 [DTFModule.RedRadish_Dried],
		}
		outputs
		{
			item 1 DTFModule.RedRadishBunch_Dried,
		}
	}
	craftRecipe BundleDandelions
	{
		timedAction = Making,
		time = 10,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 10 [DTFModule.Dandelions_Dried],
		}
		outputs
		{
			item 1 DTFModule.DandelionBunch_Dried,
		}
	}
	craftRecipe BundleGrapeLeaves
	{
		timedAction = Making,
		time = 10,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 12 [DTFModule.GrapeLeaves_Dried],
		}
		outputs
		{
			item 1 DTFModule.GrapeLeavesBunch_Dried,
		}
	}
	craftRecipe BundleMint
	{
		timedAction = Making,
		time = 10,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 10 [Base.MintHerbDried],
		}
		outputs
		{
			item 1 DTFModule.MintHerbDriedBundle,
		}
	}
	
	craftRecipe BundleCherries
	{
		timedAction = Making,
		time = 10,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 12 [DTFModule.Cherry_Dried],
		}
		outputs
		{
			item 1 DTFModule.CherryBundle_Dried,
		}
	}
	
	craftRecipe GrindBasil
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.BasilDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Basil,
		}
	}
	
	craftRecipe GrindChives
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.ChivesDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Chives,
		}
	}
	
	craftRecipe GrindCilantro
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.CilantroDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Cilantro,
		}
	}
	
	craftRecipe GrindOregano
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.OreganoDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Oregano,
		}
	}
	
	craftRecipe GrindParsley
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.ParsleyDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Parsley,
		}
	}
	
	craftRecipe GrindRosemary
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.RosemaryDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Rosemary,
		}
	}
	
	craftRecipe GrindSage
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.SageDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Sage,
		}
	}
	
	craftRecipe GrindThyme
	{
		timedAction = Making,
		time = 30,
		tags = InHandCraft;CanBeDoneInDark;Cooking,
		category = Preserve,
		inputs
		{
			item 20 [Base.ThymeDried],
			item 1 tags[MortarPestle] mode:keep,
		}
		outputs
		{
			item 1 Base.Seasoning_Thyme,
		}
	}
}