module Base
{
	craftRecipe CutHeavyChain
	{
       	timedAction = CutWire,
		time = 270,
		SkillRequired = MetalWelding:2,
		tags = InHandCraft;CanBeDoneFromFloor,
		OnGiveXP:Recipe.OnGiveXP.MetalWelding25,
       	category = Metalworking,
		xpAward = MetalWelding:25,
		inputs
		{
			item 1 tags[Base:BoltCutters] mode:keep flags[MayDegradeLight;Prop1],
			item 1 [Base.HeavyChain],
		}
		outputs
		{
			item 2 ATA2.ATAProtectionWheelsChain,
		}
	}

	craftRecipe RemoveHeavyChain
	{
       	timedAction = CutWire,
		time = 200,
		tags = InHandCraft;CanBeDoneFromFloor,
       	category = Metalworking,
		inputs
		{
			item 1 tags[Base:ViseGrips] mode:keep,
			item 1 [Base.HeavyChain_Hook],
		}
		outputs
		{
			item 1 Base.HeavyChain,
			item 1 Base.LargeHook,
		}
	}
}