module SZ
 {

craftRecipe Prepare Special Comms Station
    {
	Tags = InHandCraft,
       timedAction = Making,
       NeedToBeLearn = false,
       Time = 500,
       Category = Electrical,
		inputs
		{
			item 1 [SZ.SpecialCommsKit1] mode:destroy,
			item 1 [SZ.SpecialCommsKit2] mode:destroy,
			item 1 [Base.Screwdriver] mode:keep,
		}
		outputs
		{
			item 1 SZ.SZ_SpecCommStation,
		}
    }

craftRecipe Pack Special Comms Station
    {
	Tags = InHandCraft,
       timedAction = Making,
       NeedToBeLearn = false,
       Time = 500,
       OnCreate = Recipe.OnCreate.SpecCommStation,
       Category = SZ,
		inputs
		{
			item 1 [SZ.SZ_SpecCommStation] mode:destroy,
			item 1 [Base.Screwdriver] mode:keep,
		}
		outputs
		{
			item 1 SZ.SpecialCommsKit1,
		}
    }

craftRecipe Open equipment bag
    {
       Tags = InHandCraft,
       timedAction = Making,
       NeedToBeLearn = false,
       Time = 50,
       OnCreate = Recipe.OnCreate.SecEquipmentKit1,
       Category = SZ,
		inputs
		{
			item 1 [SZ.SecEquipmentKit1] mode:destroy,
		}
		outputs
		{
			item 1 Base.Bag_Military,
		}

    }

craftRecipe Open Army Heavy Bag
    {
       Tags = InHandCraft,
       timedAction = Making,
       Time = 50,
       OnCreate = Recipe.OnCreate.SecEquipmentKit2,
       Category = SZ,
		inputs
		{
			item 1 [SZ.SecEquipmentKit2] mode:destroy,
		}
		outputs
		{
			item 1 Base.Bag_Military,
		}

    }

craftRecipe Open Army Bag
    {
	Tags = InHandCraft,
       timedAction = Making,
       Time = 50,
       OnCreate = Recipe.OnCreate.ArmyEquipmentKit1,
       Category = SZ,
		inputs
		{
			item 1 [SZ.ArmyEquipmentKit1] mode:destroy,
		}
		outputs
		{
			item 1 Base.Bag_Military,
		}

    }

craftRecipe Open Documents Folder
    {

	Tags = InHandCraft,
       timedAction = Making,
       Time = 25,
       OnCreate = Recipe.OnCreate.DocumentsFolder01,
       Category = SZ,
		inputs
		{
			item 1 [SZ.DocumentsFolder01] mode:destroy,
		}
		outputs
		{
			item 1 SZ.SZ_LabNotes01,
		}

    }

craftRecipe Combine code fragments
    {
	Tags = InHandCraft,
	timedAction = Making,
       NeedToBeLearn = false,
       Time = 60,
       Category = SZ,
		inputs
		{
			item 1 [SZ.CodeFragment01] mode:destroy,
			item 1 [SZ.CodeFragment02] mode:destroy,
			item 1 [SZ.CodeFragment03] mode:destroy,
		}
		outputs
		{
			item 1 SZ.CodeCheckTable01,
		}
    }

}