mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
fix in Medic expertise
realized that the health buff is linked to the stamina box in expertise http://i.imgur.com/hW0L0zp.jpg ive chosen CL48 for mark 2 because you get initially mark 1 at CL48 too.
This commit is contained in:
@@ -7,10 +7,18 @@ def addAbilities(core, actor, player):
|
||||
actor.addAbility("me_enhance_action_2")
|
||||
if actor.getLevel() >= 62:
|
||||
actor.addAbility("me_enhance_action_3")
|
||||
|
||||
if actor.getLevel() >= 48:
|
||||
actor.addAbility("me_buff_health_2")
|
||||
if actor.getLevel() >= 76:
|
||||
actor.addAbility("me_buff_health_3")
|
||||
return
|
||||
|
||||
def removeAbilities(core, actor, player):
|
||||
actor.removeAbility("me_enhance_action_1")
|
||||
actor.removeAbility("me_enhance_action_2")
|
||||
actor.removeAbility("me_enhance_action_3")
|
||||
|
||||
actor.removeAbility("me_buff_health_2")
|
||||
actor.removeAbility("me_buff_health_3")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user