mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
forgot these. also remove magic cat sos
This commit is contained in:
parent
f0ac25e0f9
commit
2545b2ba37
2 changed files with 13 additions and 2 deletions
|
@ -6,6 +6,14 @@ from toontown.toonbase import TTLocalizer
|
|||
from direct.task import Task
|
||||
import LaffRestockGlobals
|
||||
from toontown.toon import NPCToons
|
||||
from DistributedToonAI import DistributedToonAI
|
||||
|
||||
zone2id = {
|
||||
10000: 0,
|
||||
13000: 1,
|
||||
12000: 2,
|
||||
11000: 3,
|
||||
}
|
||||
|
||||
class DistributedNPCLaffRestockAI(DistributedNPCToonBaseAI):
|
||||
|
||||
|
@ -14,6 +22,10 @@ class DistributedNPCLaffRestockAI(DistributedNPCToonBaseAI):
|
|||
self.givesQuests = 0
|
||||
self.busy = 0
|
||||
|
||||
def generate(self):
|
||||
DistributedToonAI.generate(self)
|
||||
self.b_setCogIndex(zone2id[self.zoneId])
|
||||
|
||||
def delete(self):
|
||||
taskMgr.remove(self.uniqueName('clearMovie'))
|
||||
self.ignoreAll()
|
||||
|
|
|
@ -6228,8 +6228,7 @@ NPCToonNames = {20000: 'Tutorial Tom',
|
|||
10001: 'Healer Sara',
|
||||
11001: 'Healer Gabriel',
|
||||
12001: 'Healer Bill',
|
||||
13001: 'Healer Clover',
|
||||
91917: 'Magic Cat'}
|
||||
13001: 'Healer Clover'}
|
||||
zone2TitleDict = {2513: ('Toon Hall', ''),
|
||||
2514: ('Toontown Bank', ''),
|
||||
2516: ('Toontown School House', ''),
|
||||
|
|
Loading…
Reference in a new issue