mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-28 23:15:53 -04:00
The System has been more generalized, but also deals with special cases of Krayt Pearls/Power Crystals. More itemscripts created
15 lines
374 B
Python
15 lines
374 B
Python
import sys
|
|
|
|
def setup(core, object):
|
|
|
|
lootPoolNames_1 = ['Junk']
|
|
lootPoolChances_1 = [100]
|
|
lootGroupChance_1 = 65
|
|
object.addToLootGroups(lootPoolNames_1,lootPoolChances_1,lootGroupChance_1)
|
|
|
|
lootPoolNames_2 = ['kraytpearl_lowq']
|
|
lootPoolChances_2 = [100]
|
|
lootGroupChance_2 = 85
|
|
object.addToLootGroups(lootPoolNames_2,lootPoolChances_2,lootGroupChance_2)
|
|
|
|
return |