mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
9 lines
424 B
Python
Executable file
9 lines
424 B
Python
Executable file
from ElevatorConstants import *
|
|
import DistributedBossElevatorAI
|
|
|
|
class DistributedCJElevatorAI(DistributedBossElevatorAI.DistributedBossElevatorAI):
|
|
|
|
def __init__(self, air, bldg, zone, antiShuffle = 0):
|
|
DistributedBossElevatorAI.DistributedBossElevatorAI.__init__(self, air, bldg, zone, antiShuffle=antiShuffle)
|
|
self.type = ELEVATOR_CJ
|
|
self.countdownTime = ElevatorData[self.type]['countdown']
|