module VPR_MakingVehicleParts_AM2
{
	imports
	{
		Base, Apocalypse Machines 2 WheelZ
	}
	
    /************************ Making Vehicle Parts ************************/
	
	recipe Make Motorcycle Gas Tank (Small)
	{
		keep WeldingMask,
		BlowTorch=6,
		WeldingRods=3,
		ScrapMetal=7,
		SmallSheetMetal=4,
		
		Result:SmallCycleGasTank,
		Time:1500.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		Sound:BlowTorch,		
		SkillRequired:MetalWelding=4;Mechanics=1,
		OnCreate:Recipe.OnCreate.PartQuality,
	}	

	recipe Make Motorcycle Gas Tank (Normal)
	{
		keep WeldingMask,
		BlowTorch=7,
		WeldingRods=3,
		ScrapMetal=7,
		SmallSheetMetal=4,
		
		Result:CycleGasTank,
		Time:1500.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		Sound:BlowTorch,		
		SkillRequired:MetalWelding=4;Mechanics=1,
		OnCreate:Recipe.OnCreate.PartQuality,
	}				
	
	
   /************************ Reconditioning ************************/
	
	recipe Patch Tire (Scooter)
	{
		keep Screwdriver,
		keep KitchenKnife/HuntingKnife/FlintKnife,
		OldScooterTire/NormalScooterTire/ModernScooterTire,
		Glue/Woodglue=1,
		RippedSheets/RippedSheetsDirty/DenimStrips/DenimStripsDirty=5,
		
		Result:OldScooterTire,
		Time:1000.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		SkillRequired:Mechanics=2,
		OnCreate:Recipe.OnCreate.RepairItem,		
		AllowDestroyedItem:true,		
	}		

	recipe Patch Tire (ATV)
	{
		keep Screwdriver,
		keep KitchenKnife/HuntingKnife/FlintKnife,
		OldATVTire/NormalATVTire/ModernATVTire,
		Glue/Woodglue=1,
		RippedSheets/RippedSheetsDirty/DenimStrips/DenimStripsDirty=5,
		
		Result:OldATVTire,
		Time:1000.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		SkillRequired:Mechanics=2,
		OnCreate:Recipe.OnCreate.RepairItem,		
		AllowDestroyedItem:true,
	}	

	recipe Patch Tire (Cart)
	{
		keep Screwdriver,
		keep KitchenKnife/HuntingKnife/FlintKnife,
		OldCartTire/NormalCartTire/ModernCartTire,
		Glue/Woodglue=1,
		RippedSheets/RippedSheetsDirty/DenimStrips/DenimStripsDirty=3,
		
		Result:OldCartTire,
		Time:1000.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		SkillRequired:Mechanics=2,
		OnCreate:Recipe.OnCreate.RepairItem,
		AllowDestroyedItem:true,
	}	

	recipe Patch Tire (Motorcycle)
	{
		keep Screwdriver,
		keep KitchenKnife/HuntingKnife/FlintKnife,
		OldCycleTire/NormalCycleTire/ModernCycleTire,
		Glue/Woodglue=1,
		RippedSheets/RippedSheetsDirty/DenimStrips/DenimStripsDirty=5,
		
		Result:OldCycleTire,
		Time:1000.0,
		Category:Welding,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
		SkillRequired:Mechanics=2,
		OnCreate:Recipe.OnCreate.RepairItem,
		AllowDestroyedItem:true,
	}

	recipe Recondition Motorcycle Battery
	{
		keep [Recipe.GetItemTypes.Screwdriver],
		keep CarBatteryCharger,
		keep BucketEmpty,
		BakingSoda=1,
		Water=6,
		ElectronicsScrap=2,
		ScrapMetal=2,
		destroy CycleBattery,

		Result:CycleBattery,
		SkillRequired:Mechanics=3;Electricity=1,
		Time:600.0,
		OnCreate:Recipe.OnCreate.RepairItem,
		AllowDestroyedItem:true,
	}
	
}