module AutoTurret 
{
    imports
    {
        Base
    }
    item TacticalTurretBook
	{
		Weight		=	0.5,
		Type		=	Literature,
		DisplayName	=	TacticalTurretBook,
		Icon		=	TurretBookLV1,
		TeachedRecipes  =   	Craft_MainBaseGroundLaser;Place_TurretLaser,
        ReplaceOnUse    =   	BeginnerTurretBook,
		DisplayCategory	=   SkillBook,
		StaticModel = Book,
		WorldStaticModel = BookBrown_Ground,
	}
    item MainBaseGroundLaser{
        DisplayCategory = VehicleMaintenance,
        Weight	=	5,
        Type	=	Normal,
        DisplayName	=	MainBaseGroundLaser,
        Icon	=	MainBaseGround,
        Tooltip = Tooltip_TurretLaser,
    }
    recipe Craft_MainBaseGroundLaser{
        EngineParts = 5,
        SmallSheetMetal=2,
        SheetMetal=1,
        BlowTorch=5,
        keep [Recipe.GetItemTypes.WeldingMask],
        SkillRequired:MetalWelding=10;Electricity=10,
        Category:AutoTurret,
        Result:Base.MainBaseGroundLaser,
        NeedToBeLearn:true,
        Time:30.0,
    }
    recipe Place_TurretLaser{
        MainBaseGroundLaser,
        Result 		: MainBaseGroundLaser,
        Time 		: 1,
        RemoveResultItem 		: TRUE,
        Category:AutoTurret,
        NeedToBeLearn:true,
        OnCreate 		: Recipe.OnCreate.Place_TurretLaser,
    }
}
	