Changed GCW Collection Scripts

Transfer of commits by Zing
This commit is contained in:
Viaron
2014-08-07 23:35:09 -04:00
parent 8ae66375da
commit 435a774ed4
2 changed files with 20 additions and 20 deletions
+10 -10
View File
@@ -3,23 +3,23 @@ from resources.datatables import GcwRank
def handleRankUp(core, actor, newrank):
if newrank >= GcwRank.LIEUTENANT:
actor.addAbility('pvp_retaliation_ability')
actor.addAbility('command_pvp_retaliation_ability')
core.collectionService.addCollection(actor, 'pvp_imperial_lieutenant')
if newrank >= GcwRank.CAPTAIN:
actor.addAbility('pvp_adrenaline_ability')
actor.addAbility('command_pvp_adrenaline_ability')
core.collectionService.addCollection(actor, 'pvp_imperial_captain')
if newrank >= GcwRank.MAJOR:
actor.addAbility('pvp_unstoppable_ability')
actor.addAbility('command_pvp_unstoppable_ability')
core.collectionService.addCollection(actor, 'pvp_imperial_major')
if newrank >= GcwRank.LTCOLONEL:
actor.addAbility('pvp_last_man_ability')
actor.addAbility('command_pvp_last_man_ability')
core.collectionService.addCollection(actor, 'pvp_imperial_lt_colonel')
if newrank >= GcwRank.COLONEL:
actor.addAbility('pvp_aura_buff_self_ability')
actor.addAbility('pvp_aura_buff_imperial_self')
core.collectionService.addCollection(actor, 'pvp_imperial_colonel')
if newrank >= GcwRank.GENERAL:
@@ -30,19 +30,19 @@ def handleRankUp(core, actor, newrank):
def handleRankDown(actor, newrank):
if newrank < GcwRank.LIEUTENANT:
actor.removeAbility('pvp_retaliation_ability')
actor.removeAbility('command_pvp_retaliation_ability')
if newrank < GcwRank.CAPTAIN:
actor.removeAbility('pvp_adrenaline_ability')
actor.removeAbility('command_pvp_adrenaline_ability')
if newrank < GcwRank.MAJOR:
actor.removeAbility('pvp_unstoppable_ability')
actor.removeAbility('command_pvp_unstoppable_ability')
if newrank < GcwRank.LTCOLONEL:
actor.removeAbility('pvp_last_man_ability')
actor.removeAbility('command_pvp_last_man_ability')
if newrank < GcwRank.COLONEL:
actor.removeAbility('pvp_aura_buff_self_ability')
actor.removeAbility('pvp_aura_buff_imperial_self')
if newrank < GcwRank.GENERAL:
actor.removeAbility('pvp_airstrike_ability')
+10 -10
View File
@@ -3,23 +3,23 @@ from resources.datatables import GcwRank
def handleRankUp(core, actor, newrank):
if newrank >= GcwRank.LIEUTENANT:
actor.addAbility('pvp_retaliation_rebel_ability')
actor.addAbility('command_pvp_retaliation_rebel_ability')
core.collectionService.addCollection(actor, 'pvp_rebel_lieutenant')
if newrank >= GcwRank.CAPTAIN:
actor.addAbility('pvp_adrenaline_rebel_ability')
actor.addAbility('command_pvp_adrenaline_rebel_ability')
core.collectionService.addCollection(actor, 'pvp_rebel_captain')
if newrank >= GcwRank.MAJOR:
actor.addAbility('pvp_unstoppable_rebel_ability')
actor.addAbility('command_pvp_unstoppable_rebel_ability')
core.collectionService.addCollection(actor, 'pvp_rebel_major')
if newrank >= GcwRank.COMMANDER:
actor.addAbility('pvp_last_man_rebel_ability')
actor.addAbility('command_pvp_last_man_rebel_ability')
core.collectionService.addCollection(actor, 'pvp_rebel_commander')
if newrank >= GcwRank.COLONEL:
actor.addAbility('pvp_aura_buff_self_rebel_ability')
actor.addAbility('pvp_aura_buff_rebel_self')
core.collectionService.addCollection(actor, 'pvp_rebel_colonel')
if newrank >= GcwRank.GENERAL:
@@ -30,19 +30,19 @@ def handleRankUp(core, actor, newrank):
def handleRankDown(actor, newrank):
if newrank < GcwRank.LIEUTENANT:
actor.removeAbility('pvp_retaliation_rebel_ability')
actor.removeAbility('command_pvp_retaliation_rebel_ability')
if newrank < GcwRank.CAPTAIN:
actor.removeAbility('pvp_adrenaline_rebel_ability')
actor.removeAbility('command_pvp_adrenaline_rebel_ability')
if newrank < GcwRank.MAJOR:
actor.removeAbility('pvp_unstoppable_rebel_ability')
actor.removeAbility('command_pvp_unstoppable_rebel_ability')
if newrank < GcwRank.COMMANDER:
actor.removeAbility('pvp_last_man_rebel_ability')
actor.removeAbility('command_pvp_last_man_rebel_ability')
if newrank < GcwRank.COLONEL:
actor.removeAbility('pvp_aura_buff_self_rebel_ability')
actor.removeAbility('pvp_aura_buff_rebel_self')
if newrank < GcwRank.GENERAL:
actor.removeAbility('pvp_airstrike_rebel_ability')