module Base
{
	imports
	{
		runFlat,
		damnCraft
	}

	recipe Repair Tire
    	{
		LargeTire/MediumTire/SmallTire/ModernTire,
		TireRepairTools,
		TireRepairRubberSolution,
		TireRepairStrips,

		NoBrokenItems:false,
		Result:TireRepairTools,
		Time:250.0,
		OnCreate:DAMN.OnCreate.RepairTire,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
    }

    recipe Repair Tire
    	{
		Large2TireAxle/LargeDoubleTires,
		TireRepairTools,
		TireRepairRubberSolution=2,
		TireRepairStrips=2,

		NoBrokenItems:false,
		Result:TireRepairTools,
		Time:500.0,
		OnCreate:DAMN.OnCreate.RepairTire,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
    }
	
	recipe Repair Tire
    	{
		Large4TireAxle/Medium4TireAxle,
		TireRepairTools,
		TireRepairRubberSolution=4,
		TireRepairStrips=4,

		NoBrokenItems:false,
		Result:TireRepairTools,
		Time:1000.0,
		OnCreate:DAMN.OnCreate.RepairTire,
		NeedToBeLearn:false,
		CanBeDoneFromFloor:true,
    }
}
