/* Ammo Maker by STIMP_TM */

module ammomaker {

	imports
	{
		Base
	}

/* Recipes Ammo FAR */

	recipe Make .22 LR [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=4,
		ammomaker_PartsStraightSRim=1,
		keep Hammer/BallPeenHammer,

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

	recipe Make 7.62x51 NATO [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=86,
		ammomaker_PartsBottleneckM=1,
		keep Hammer/BallPeenHammer,

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

	recipe Make .30-06 Spring [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=104,
		ammomaker_PartsBottleneckM=1,
		keep Hammer/BallPeenHammer,

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

	recipe Make 7.62x39 [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=50,
		ammomaker_PartsBottleneckS=1,
		keep Hammer/BallPeenHammer,

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

	recipe Make .357 Mag [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=18,
		ammomaker_PartsStraightMRim=1,
		keep Hammer/BallPeenHammer,

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

	recipe Make .44-40 WCF [FAR]
	{
		OnTest:Recipe.OnTest.isActivated_FAR,
		
		ammomaker_GunPowderGrains=20,
		ammomaker_PartsStraightMRim=1,
		keep Hammer/BallPeenHammer,

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

}