mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 00:37:54 +00:00
Black Cat Day implemented on every 13th
This commit is contained in:
parent
6ba9b8ef51
commit
7b2fea85bb
3 changed files with 10 additions and 3 deletions
|
@ -13,7 +13,7 @@ class DistributedBlackCatMgrAI(DistributedObjectAI):
|
|||
avId = self.air.getAvatarIdFromSender()
|
||||
av = self.air.doId2do.get(avId)
|
||||
|
||||
if not av or av.dna.getAnimal() != 'cat' or av.dna.headColor == 0x1a:
|
||||
if not av or av.getTutorialAck() or av.dna.getAnimal() != 'cat' or av.dna.headColor == 0x1a:
|
||||
return
|
||||
|
||||
newDNA = ToonDNA()
|
||||
|
|
|
@ -27,6 +27,13 @@ Holidays = {
|
|||
'startMessage': TTLocalizer.SillySaturdayStart,
|
||||
'ongoingMessage': TTLocalizer.SillySaturdayOngoing,
|
||||
'endMessage': TTLocalizer.SillySaturdayEnd
|
||||
},
|
||||
ToontownGlobals.BLACK_CAT_DAY: {
|
||||
'startDay': 13,
|
||||
'endDay': 13,
|
||||
'startMessage': TTLocalizer.BlackCatHolidayStart,
|
||||
'ongoingMessage': TTLocalizer.BlackCatHolidayStart,
|
||||
'endMessage': TTLocalizer.BlackCatHolidayEnd
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7971,7 +7971,7 @@ BankUpgradeHolidayStart = 'Something Toontastic happened to your Jellybean Bank!
|
|||
HalloweenPropsHolidayStart = "It's Halloween in Toontown!"
|
||||
HalloweenPropsHolidayEnd = 'Halloween has ended. Boo!'
|
||||
SpookyPropsHolidayStart = 'Silly Meter spins Toontown into spooky mode!'
|
||||
BlackCatHolidayStart = 'Create a Black Cat - Today only!'
|
||||
BlackCatHolidayStart = 'Create a Black Cat - today only!'
|
||||
BlackCatHolidayEnd = 'Black Cat day has ended!'
|
||||
SpookyBlackCatHolidayStart = 'Friday 13th means a Black Cat blast!'
|
||||
LaughingManHolidayStart = 'Today is the day of the Laughing Man!'
|
||||
|
@ -8224,7 +8224,7 @@ HolidayNamesInCalendar = {1: ('Summer Fireworks', 'Celebrate Summer with a firew
|
|||
5: ('Skelecog Invasion', 'Stop the Skelecogs from invading Toontown!'),
|
||||
6: ('Mr. Hollywood Invasion', 'Stop the Mr. Hollywood Cogs from invading Toontown!'),
|
||||
8: ('Toon Species Election', 'Vote on the new Toon species! Will it be Goat? Will it be Pig?'),
|
||||
9: ('Black Cat Day', 'Happy Halloween! Create a Toontastic Black Cat Toon - Today Only!'),
|
||||
9: ('Black Cat Day', 'Create a Toontastic Black Cat Toon - today only!'),
|
||||
13: ('Trick or Treat', 'Happy Halloween! Trick or treat throughout Toontown to get a nifty Halloween pumpkin head reward!'),
|
||||
16: ('Grand Prix', 'Grand Prix Monday at Goofy Speedway! To win, collect the most points in three consecutive races!'),
|
||||
17: ('Fish Bingo', 'Fish Bingo Wednesday! Everyone at the pond works together to complete the card before time runs out.'),
|
||||
|
|
Loading…
Reference in a new issue