mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 20:22:33 -06:00
Summon between 1000 and 3000 cogs
This commit is contained in:
parent
910fcfdc77
commit
10a451c883
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
import time
|
import time, random
|
||||||
|
|
||||||
from toontown.battle import SuitBattleGlobals
|
from toontown.battle import SuitBattleGlobals
|
||||||
from toontown.suit import SuitDNA
|
from toontown.suit import SuitDNA
|
||||||
|
@ -74,7 +74,7 @@ class SuitInvasionManagerAI:
|
||||||
|
|
||||||
# How many suits do we want?
|
# How many suits do we want?
|
||||||
if type == INVASION_TYPE_NORMAL:
|
if type == INVASION_TYPE_NORMAL:
|
||||||
self.total = 1000
|
self.total = random.randint(1000, 3000)
|
||||||
elif type == INVASION_TYPE_MEGA:
|
elif type == INVASION_TYPE_MEGA:
|
||||||
self.total = 5000
|
self.total = 5000
|
||||||
elif type == INVASION_TYPE_BRUTAL:
|
elif type == INVASION_TYPE_BRUTAL:
|
||||||
|
|
Loading…
Reference in a new issue