module Base
{

	/* Standard Vehicles */
    recipe BMWindshield1 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:Windshield1,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMRearWindshield1 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:RearWindshield1,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMFrontWindow1 {
        keep Scalpel,
        GlassPane,
        Result:FrontWindow1,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }
    recipe BMRearWindow1 {
        keep Scalpel,
        GlassPane,
        Result:RearWindow1,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }


    /* Heavy-Duty Vehicles */
    recipe BMWindshield2 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:Windshield2,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMRearWindshield2 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:RearWindshield2,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMFrontWindow2 {
        keep Scalpel,
        GlassPane,
        Result:FrontWindow2,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }
    recipe BMRearWindow2 {
        keep Scalpel,
        GlassPane,
        Result:RearWindow2,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }


    /* Sport Vehicles */
    recipe BMWindshield3 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:Windshield3,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMRearWindshield3 {
        keep Scalpel,
        DuctTape=3,
        GlassPane=2,
        Result:RearWindshield3,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindshieldCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 900.0,
        Category: Windows,
    }
    recipe BMFrontWindow3 {
        keep Scalpel,
        GlassPane,
        Result:FrontWindow3,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }
    recipe BMRearWindow3 {
        keep Scalpel,
        GlassPane,
        Result:RearWindow3,
        OnGiveXP: Recipe.OnGiveXP.BuildingMenu_XPMakeWindowCar,
        SkillRequired:Mechanics=2,
        NeedToBeLearn: True,
        Time: 600.0,
        Category: Windows,
    }

}