module Base
{	
    craftRecipe Rhino.MakeBullbar
	{
        timedAction = Welding,
        time = 200,
        Tags = AnySurfaceCraft;Welding,
        category = Mechanical,
        xpAward = MetalWelding:20,
        SkillRequired = MetalWelding:3,
        NeedToBeLearn = True,

        inputs
        {
            item 4 [Base.MetalPipe],
            item 1 [Base.WeldingRods],
			item 6 [Base.BlowTorch],
            item 1 tags[WeldingMask] mode:keep,
        }
        outputs
        {
            item 1 Base.RhinoBullBar2,
        }
	}

    craftRecipe Rhino.MakeHood
	{
        timedAction = Welding,
        time = 200,
        Tags = AnySurfaceCraft;Welding,
        category = Mechanical,
        xpAward = MetalWelding:20,
        SkillRequired = MetalWelding:4,
        NeedToBeLearn = True,

        inputs
        {
            item 4 [Base.SheetMetal],
            item 2 [Base.Screws],
			item 9 [Base.BlowTorch],
			item 1 [Base.WeldingRods],
            item 1 tags[WeldingMask] mode:keep,
        }
        outputs
        {
            item 1 Base.RhinoEngineDoor2,
        }
	}
	
    craftRecipe Rhino.MakeDoor
	{
        timedAction = Welding,
        time = 300,
        Tags = AnySurfaceCraft;Welding,
        category = Mechanical,
        xpAward = MetalWelding:20,
        SkillRequired = MetalWelding:5,
        NeedToBeLearn = True,

        inputs
        {
            item 2 [Base.SheetMetal],
            item 8 [Base.Screws],
			item 2 [Base.MetalPipe],
			item 6 [Base.BlowTorch],
			item 1 [Base.WeldingRods],
            item 1 tags[WeldingMask] mode:keep,
        }
        outputs
        {
            item 1 Base.RhinoFrontDoor2,
        }
	}	
}