module AutoTurret
{
    item TurretAmmoBook
	{
		Weight		=	0.5,
		Type		=	Literature,
		DisplayName	=	TurretAmmoBook,
		Icon		=	TurretBookLV1,
		TeachedRecipes  =   	Craft_30mmAmmo;Craft_20mmAmmo;Craft_50mmAmmo;Craft_60mmAmmo;Craft_88mmAmmo;Craft_EtherAmmoBuilder,
        ReplaceOnUse    =   	TurretAmmoBook,
		DisplayCategory	=   SkillBook,
		StaticModel = Book,
		WorldStaticModel = BookBrown_Ground,
	}
    item 30mmAmmo{
        DisplayCategory 		= Ammo,
		Count 		= 5,
		Weight 		= 0.3,
		Type 		= Normal,
		DisplayName 		= 30mmAmmo,
		Icon 		= 30mmAmmo,
		MetalValue 		= 24,
		WorldStaticModel 		= BoxOfShotGunShells,
    }
    item 20mmAmmo{
        DisplayCategory 		= Ammo,
		Count 		= 5,
		Weight 		= 0.2,
		Type 		= Normal,
		DisplayName 		= 20mmAmmo,
		Icon 		= 20mmAmmo,
		MetalValue 		= 24,
		WorldStaticModel 		= BoxOfShotGunShells,
    }
	item 50mmAmmo{
        DisplayCategory 		= Ammo,
		Count 		= 5,
		Weight 		= 0.5,
		Type 		= Normal,
		DisplayName 		= 50mmAmmo,
		Icon 		= 50mmAmmo,
		MetalValue 		= 24,
		WorldStaticModel 		= BoxOfShotGunShells,
    }
	item 60mmAmmo{
        DisplayCategory 		= Ammo,
		Count 		= 5,
		Weight 		= 1,
		Type 		= Normal,
		DisplayName 		= 60mmAmmo,
		Icon 		= 60mmAmmo,
		MetalValue 		= 24,
		WorldStaticModel 		= BoxOfShotGunShells,
    }
    item 88mmAmmo{
        DisplayCategory 		= Ammo,
		Count 		= 5,
		Weight 		= 1.5,
		Type 		= Normal,
		DisplayName 		= 88mmAmmo,
		Icon 		= 88mmAmmo,
		MetalValue 		= 24,
		WorldStaticModel 		= BoxOfShotGunShells,
    }
    item EtherAmmoBuilder{
        DisplayCategory 		= Ammo,
		Weight 		= 10,
		DisplayName 		= EtherAmmoBuilder,
		Icon 		= EtherAmmoBuilder,
		MetalValue 		= 24,
        WorldStaticModel = EtherAmmoBuilder,
		Type 		= Container,
		Capacity = 10,
    }
    model EtherAmmoBuilder
    {   
        mesh = WorldItems/Replicator,
        texture = WorldItems/Replicator,
    }
    
	recipe Craft_30mmAmmo
	{
		GunPowder = 2, 
		SmallSheetMetal=1,
        SheetMetal=1,
        Category:AutoTurret,
        Result:AutoTurret.30mmAmmo=2,
        CanBeDoneFromFloor:True,
        Time:5.0,
	}
    recipe Craft_20mmAmmo
    {
        GunPowder = 2, 
        SmallSheetMetal=1,
        Category:AutoTurret,
        Result:AutoTurret.20mmAmmo=2,
        CanBeDoneFromFloor:True,
        Time:5.0,
    }
    recipe Craft_50mmAmmo
    {
        GunPowder = 2, 
        SmallSheetMetal=2,
        SheetMetal=1,
        Category:AutoTurret,
        Result:AutoTurret.50mmAmmo=2,
        CanBeDoneFromFloor:True,
        Time:5.0,
    }
    recipe Craft_60mmAmmo
    {
        GunPowder = 3, 
        SmallSheetMetal=3,
        SheetMetal=1,
        Category:AutoTurret,
        Result:AutoTurret.60mmAmmo=2,
        CanBeDoneFromFloor:True,
        Time:5.0,
    }
    recipe Craft_88mmAmmo
    {
        GunPowder = 3, 
        SmallSheetMetal=4,
        SheetMetal=1,
        Category:AutoTurret,
        CanBeDoneFromFloor:True,
        Result:AutoTurret.88mmAmmo=2,
        Time:5.0,
    }
    recipe Craft_EtherAmmoBuilder
    {
        SmallSheetMetal=10,
        SheetMetal=10,
        BlowTorch=2,
        Category:AutoTurret,
        CanBeDoneFromFloor:True,
        Result:AutoTurret.EtherAmmoBuilder,
        SkillRequired:MetalWelding=2;Electricity=10,
        Time:5.0,
    }

	
	

}



