mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
10 lines
454 B
Python
10 lines
454 B
Python
|
from ElevatorConstants import *
|
||
|
import DistributedBossElevatorAI
|
||
|
|
||
|
class DistributedVPElevatorAI(DistributedBossElevatorAI.DistributedBossElevatorAI):
|
||
|
|
||
|
def __init__(self, air, bldg, zone, antiShuffle = 0, minLaff = 0):
|
||
|
DistributedBossElevatorAI.DistributedBossElevatorAI.__init__(self, air, bldg, zone, antiShuffle=antiShuffle, minLaff=minLaff)
|
||
|
self.type = ELEVATOR_VP
|
||
|
self.countdownTime = ElevatorData[self.type]['countdown']
|