Files
NGECore2/scripts/mobiles/lairgroups/lok_bosstest.py
CharonInferar d3a7d47b1a Added Lair template overloads and Boss spawns for lairs
- Content devs can now add lairCRC vectors and bosses
- The boss spawns will only work after the invasion commit because then
lairs will get health bars and the lair will spawn more waves
2014-08-08 18:25:57 +02:00

11 lines
311 B
Python

import sys
from services.spawn import LairSpawnTemplate
from java.util import Vector
def addLairGroup(core):
spawnTemplate1 = LairSpawnTemplate(-1, 'lok_gurk_lair', 5, 20)
spawnTemplates = Vector()
spawnTemplates.add(spawnTemplate1)
core.spawnService.addLairGroup('lok_bosstest', spawnTemplates)
return