module Base
{
	craftRecipe AddCounterWeightToHeadMount
	{
        timedAction = Making,
		Time = 30,
		AllowBatchCraft = False,
		Tags = InHandCraft;CanBeDoneInDark,
        category = Miscellaneous,

		inputs
		{
			item 1 [FNVG.Counterweight] mode:destroy,
            item 1 [FNVG.HeadMount_PART] mode:destroy,
		}
		outputs
		{
			item 1 FNVG.HeadMount,
		}
	}

	craftRecipe RemoveCounterWeightFromHeadMount
	{
        timedAction = Making,
		Time = 30,
		AllowBatchCraft = False,
		Tags = InHandCraft;CanBeDoneInDark,
        category = Miscellaneous,

		inputs
		{
			item 1 [FNVG.HeadMount] mode:destroy,
		}
		outputs
		{
			item 1 FNVG.HeadMount_PART,
            item 1 FNVG.Counterweight,
		}
	}
}