/* Ammo Maker by STIMP_TM */

module ammomaker {

	imports
	{
		Base
	}

/* Recipes Ammo FA */

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

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

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

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

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

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

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

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

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

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

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

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

}