mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
Added expertise_dodge skillmod Added combat_critical_hit_reduction skillmod Moved commands to combat commands (seen by client) Added Officer Insipred action 5PC configuration to CommandService.
13 lines
260 B
Python
13 lines
260 B
Python
import sys
|
|
|
|
def setup(core, actor, buff):
|
|
if actor.getSkillMod('expertise_aura_maintain'):
|
|
if actor.getSkillModBase('expertise_aura_maintain') > 1:
|
|
buff.setDuration(-1)
|
|
return
|
|
|
|
def add(core, actor, buff):
|
|
return
|
|
|
|
def remove(core, actor, buff):
|
|
return |