Poodletooth-iLand/toontown/safezone/DLSafeZoneLoader.py

12 lines
595 B
Python

from toontown.safezone import Playground
from toontown.safezone import SafeZoneLoader
class DLSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
def __init__(self, hood, parentFSM, doneEvent):
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
self.playgroundClass = Playground.Playground
self.musicFile = 'phase_8/audio/bgm/DL_nbrhood.ogg'
self.activityMusicFile = 'phase_8/audio/bgm/DL_SZ_activity.ogg'
self.dnaFile = 'phase_8/dna/donalds_dreamland_sz.pdna'
self.safeZoneStorageDNAFile = 'phase_8/dna/storage_DL_sz.pdna'