mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
import sys
|
|
|
|
def bounty_hunter_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_bountyhunter_master")
|
|
return
|
|
|
|
def commando_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_commando_master")
|
|
return
|
|
|
|
def entertainer_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_social_entertainer_master")
|
|
return
|
|
|
|
def force_sensitive_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_jedi_master")
|
|
return
|
|
|
|
def medic_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_medic_master")
|
|
return
|
|
|
|
def officer_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_officer_master")
|
|
return
|
|
|
|
def smuggler_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_smuggler_master")
|
|
return
|
|
|
|
def spy_1a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_spy_master")
|
|
return
|
|
|
|
def trader_0a(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_merchant_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_artisan_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_chef_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_tailor_master")
|
|
return
|
|
|
|
def trader_0b(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_merchant_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_artisan_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_architect_master")
|
|
return
|
|
|
|
def trader_0c(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_merchant_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_artisan_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_armorsmith_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_weaponsmith_master")
|
|
return
|
|
|
|
def trader_0d(core, actor):
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_merchant_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_artisan_master")
|
|
core.collectionService.addCollection(actor, "new_prof_crafting_droidengineer_master")
|
|
return
|
|
|