mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
18 lines
710 B
Python
18 lines
710 B
Python
from toontown.safezone.DLSafeZoneLoader import DLSafeZoneLoader
|
|
from toontown.town.DLTownLoader import DLTownLoader
|
|
from toontown.toonbase import ToontownGlobals
|
|
from toontown.hood.ToonHood import ToonHood
|
|
|
|
class DLHood(ToonHood):
|
|
notify = directNotify.newCategory('DLHood')
|
|
|
|
ID = ToontownGlobals.DonaldsDreamland
|
|
TOWNLOADER_CLASS = DLTownLoader
|
|
SAFEZONELOADER_CLASS = DLSafeZoneLoader
|
|
STORAGE_DNA = 'phase_8/dna/storage_DL.pdna'
|
|
SKY_FILE = 'phase_8/models/props/DL_sky'
|
|
TITLE_COLOR = (1.0, 0.9, 0.5, 1.0)
|
|
|
|
HOLIDAY_DNA = {
|
|
ToontownGlobals.CHRISTMAS: ['phase_8/dna/winter_storage_DL.pdna'],
|
|
ToontownGlobals.HALLOWEEN: ['phase_8/dna/halloween_props_storage_DL.pdna']}
|