module Base
{	
    /************************ Tires ************************/

    craftRecipe runFlatDismantleTireSmallFour
	{
        timedAction = Making,
        time = 90,
        Tags = InHandCraft,
        category = Recycling,
        xpAward = Mechanics:1,
        SkillRequired = Mechanics:1,
        OnCreate = DAMN.OnCreate.UnpackStuff,

        inputs
        {
            item 1 [runFlat.Small4TireAxle] mode:destroy,
            item 1 [Base.Crowbar;Base.CrowbarForged] mode:keep,
        }
        outputs
        {
            item 4 damnCraft.SmallTire2,
        }
	}

    craftRecipe runFlatDismantleTireMediumFour
	{
        timedAction = Making,
        time = 90,
        Tags = InHandCraft,
        category = Recycling,
        xpAward = Mechanics:1,
        SkillRequired = Mechanics:1,
        OnCreate = DAMN.OnCreate.UnpackStuff,

        inputs
        {
            item 1 [runFlat.Medium4TireAxle] mode:destroy,
            item 1 [Base.Crowbar;Base.CrowbarForged] mode:keep,
        }
        outputs
        {
            item 4 runFlat.MediumTire,
        }
	}

    craftRecipe runFlatDismantleTireLargeTwo
	{
        timedAction = Making,
        time = 90,
        Tags = InHandCraft,
        category = Recycling,
        xpAward = Mechanics:1,
        SkillRequired = Mechanics:1,
        OnCreate = DAMN.OnCreate.UnpackStuff,

        inputs
        {
            item 1 [runFlat.Large2TireAxle;runFlat.LargeDoubleTires] mode:destroy,
            item 1 [Base.Crowbar;Base.CrowbarForged] mode:keep,
        }
        outputs
        {
            item 2 runFlat.LargeTire,
        }
	}

    craftRecipe runFlatDismantleTireLargeFour
	{
        timedAction = Making,
        time = 90,
        Tags = InHandCraft,
        category = Recycling,
        xpAward = Mechanics:1,
        SkillRequired = Mechanics:1,
        OnCreate = DAMN.OnCreate.UnpackStuff,

        inputs
        {
            item 1 [runFlat.Large4TireAxle] mode:destroy,
            item 1 [Base.Crowbar;Base.CrowbarForged] mode:keep,
        }
        outputs
        {
            item 4 runFlat.LargeTire,
        }
	}
}