mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
- Added GCW Banners and the according profession buffs - Fixed some AI issues
14 lines
248 B
Python
14 lines
248 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
|
|
return
|
|
|
|
def add(core, actor, buff):
|
|
core.skillModService.addSkillMod(actor, 'proc_buff', 1)
|
|
return
|
|
|
|
def remove(core, actor, buff):
|
|
core.skillModService.deductSkillMod(actor, 'proc_buff', 1)
|
|
return
|
|
|