1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-10-28 18:20:04 +00:00

Revamped Challenge Buttons completely, Added primal abilities, items and primals themselves

This commit is contained in:
Deukhoofd
2016-02-10 23:43:15 +01:00
parent 5fdcc4b285
commit 19558607f3
31 changed files with 902 additions and 273 deletions

View File

@@ -118,11 +118,11 @@ class @BattleView extends Backbone.View
$actions.html @action_template(locals)
pokemon = @model.getPokemon(@model.get('index'), 0)
if pokemon.getItem()?.type == 'megastone'
$button = $actions.find('.mega-evolve')
$button = $actions.find('.mega-evolve')
if pokemon.canMegaEvolve()
$button.removeClass("hidden")
if !pokemon.canMegaEvolve()
$button.addClass('disabled')
else
$button.addClass('disabled')
$actions.find('.move.button').each (i, el) =>
$this = $(el)