mirror of
https://github.com/exane/not-gwent-online
synced 2025-08-16 21:17:30 +00:00
add multi ability support
This commit is contained in:
@@ -64,6 +64,7 @@ var Battle = (function(){
|
||||
this.p1.draw(10);
|
||||
this.p2.draw(10);
|
||||
|
||||
|
||||
/* this.p1.hand.add(Card("impenetrable_fog"));
|
||||
this.p2.hand.add(Card("impenetrable_fog"));
|
||||
this.p1.hand.add(Card("biting_frost"));
|
||||
|
@@ -397,11 +397,11 @@ Battleside = (function(){
|
||||
var self = this;
|
||||
obj.targetSide = this;
|
||||
if(obj.disabled) return;
|
||||
var ability = Array.isArray(__flag) || card.getAbility();
|
||||
var ability = Array.isArray(__flag) ? __flag : card.getAbility();
|
||||
|
||||
if(Array.isArray(ability) && ability.length){
|
||||
var ret = ability.slice();
|
||||
ret = ret.splice(0, 1);
|
||||
ret.splice(0, 1);
|
||||
this.checkAbilities(card, obj, ret);
|
||||
ability = ability[0];
|
||||
}
|
||||
@@ -443,6 +443,7 @@ Battleside = (function(){
|
||||
return;
|
||||
}
|
||||
if(replaceCard.getName() === card.getName()) return;
|
||||
if(replaceCard.hasAbility("hero")) return;
|
||||
self.off("Decoy:replaceWith");
|
||||
var field = self.field[replaceCard.getType()];
|
||||
|
||||
|
Reference in New Issue
Block a user