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:
Bronco69
2014-04-07 04:25:56 +02:00
parent 1f981fa388
commit 97dfb85bd7
@@ -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