module Base
{
	/***ADD ONS***/
	template vehicle actySpareTire
	{
		part actySpareTire
		{
			category = Attachments,
			area = SpareTire,
			itemType = Base.OldTire;Base.NormalTire;Base.ModernTire,
			mechanicRequireKey = false,
			repairMechanic = false,

			table install
			{
				items
				{
					1
					{
						type = Base.Wrench,
						count = 1,
						keep = true,
						equip = primary,
					}
				}

				time = 100,
				test = Vehicles.InstallTest.Default,
			}

			table uninstall
			{
				items
				{
					1
					{
						type = Base.Wrench,
						count = 1,
						keep = true,
						equip = primary,
					}
				}

				time = 100,
				test = Vehicles.UninstallTest.Default,
			}

			lua
			{
				create = Vehicles.Create.Default,
			}
		}
	}

	
	/***PARTS TEMPLATES***/
	
	template vehicle actyAddons
	{

		template! = actySpareTire,

		part actySpareTire
		{
			model Default
			{
				file = 89actytruck_Spare,
			}
		}
	}


}