mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-09-21 06:13:13 -04:00
Improved Spys Fang Now Grants Abilities at Correct Levels
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import sys
|
||||
|
||||
def addAbilities(core, actor, player):
|
||||
if actor.getLevel() >= 26:
|
||||
if actor.getLevel() >= 10:
|
||||
actor.addAbility("sp_dot_0")
|
||||
if actor.getLevel() >= 34:
|
||||
if actor.getLevel() >= 28:
|
||||
actor.addAbility("sp_dot_1")
|
||||
if actor.getLevel() >= 48:
|
||||
if actor.getLevel() >= 46:
|
||||
actor.addAbility("sp_dot_2")
|
||||
if actor.getLevel() >= 62:
|
||||
if actor.getLevel() >= 58:
|
||||
actor.addAbility("sp_dot_3")
|
||||
if actor.getLevel() >= 76:
|
||||
if actor.getLevel() >= 72:
|
||||
actor.addAbility("sp_dot_4")
|
||||
if actor.getLevel() >= 90:
|
||||
if actor.getLevel() >= 88:
|
||||
actor.addAbility("sp_dot_5")
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user