module Base
{
	template vehicle 93peugeot205_spare
    {
        part ATASpareWheel
        {
			area = TruckBed,
            category = tire,
            itemType = Base.OldTire;Base.NormalTire;Base.ModernTire,
            
            table install
            {
                /*
                items
                {
                    1
                    {
                        type = Base.LugWrench,
                        count = 1,
                        keep = true,
                        equip = primary,
                    }
                }
                */
                door = TrunkDoor,
                time = 500,
                test = ATATuning.InstallTest.multiRequire,
                complete = ATATuning.InstallComplete.DefaultModel,
            }

            table uninstall
            {
                /*
                items
                {
                    1
                    {
                        type = Base.LugWrench,
                        count = 1,
                        keep = true,
                        equip = primary,
                    }
                }
                */
                door = TrunkDoor,
                time = 500,
                test = ATATuning.UninstallTest.multiRequire,
                complete = ATATuning.UninstallComplete.DefaultModel,
            }

            lua
            {
                create = ATATuning.Create.Chance45,
                init = ATATuning.Init.Default,
            }
        }
    }
}