/* Ammo Maker by STIMP_TM */

module ammomaker {

	imports
	{
		Base
	}

/* Recipes Ammo Base */

	recipe Make .223 Rem [Base]
	{
		OnTest:Recipe.OnTest.isNotActivated_EK2,

		ammomaker_GunPowderGrains=48,
		ammomaker_PartsBottleneckS=1,
		keep Hammer/BallPeenHammer,

		Result:223Bullets=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make 5.56x45 NATO [Base]
	{
		ammomaker_GunPowderGrains=50,
		ammomaker_PartsBottleneckS=1,
		keep Hammer/BallPeenHammer,

		Result:556Bullets=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make .308 Win [Base]
	{
		OnTest:Recipe.OnTest.isNotActivated_EK2,

		ammomaker_GunPowderGrains=90,
		ammomaker_PartsBottleneckM=1,
		keep Hammer/BallPeenHammer,

		Result:308Bullets=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make 9mm Luger [Base]
	{
		ammomaker_GunPowderGrains=10,
		ammomaker_PartsStraightS=1,
		keep Hammer/BallPeenHammer,

		Result:Bullets9mm=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make .38 SP [Base]
	{
		OnTest:Recipe.OnTest.isNotActivated_EK2,

		ammomaker_GunPowderGrains=12,
		ammomaker_PartsStraightMRim=1,
		keep Hammer/BallPeenHammer,

		Result:Bullets38=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make .44 Mag [Base]
	{
		ammomaker_GunPowderGrains=30,
		ammomaker_PartsStraightMRim=1,
		keep Hammer/BallPeenHammer,

		Result:Bullets44=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make .45 ACP [Base]
	{
		ammomaker_GunPowderGrains=16,
		ammomaker_PartsStraightM=1,
		keep Hammer/BallPeenHammer,

		Result:Bullets45=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

	recipe Make 12 G Buck 00 [Base]
	{		
		ammomaker_GunPowderGrains=40,
		ammomaker_HullShotgunS=1,
		ammomaker_Ball00=10,
		keep Hammer/BallPeenHammer,

		Result:ShotgunShells=1,
		Sound:MakeAmmo,
		Time:50.0,
        Category:AmmoMakerAmmo,
		OnGiveXP:Recipe.OnGiveXP.Reloading3,
		NeedToBeLearn:false,
		IsHidden:false,
	}

}