mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-18 19:56:02 +01:00
Fix this.hands in CardInfo
This commit is contained in:
parent
e2e061e14f
commit
b9e81c040e
1 changed files with 3 additions and 3 deletions
|
@ -120739,7 +120739,7 @@ var CardInfo = {
|
|||
artsEffect: {
|
||||
actionAsyn: function () {
|
||||
return Callback.immediately().callback(this,function () {
|
||||
if (this.hands.length) return;
|
||||
if (this.player.hands.length) return;
|
||||
var filter = function (card) {
|
||||
return (card.type === 'SIGNI');
|
||||
};
|
||||
|
@ -123983,7 +123983,7 @@ var CardInfo = {
|
|||
constEffects: [{
|
||||
condition: function () {
|
||||
return (this.game.turnPlayer === this.player.opponent) &&
|
||||
(this.hands.length >= 6);
|
||||
(this.player.hands.length >= 6);
|
||||
},
|
||||
action: function (set,add) {
|
||||
set(this,'power',15000);
|
||||
|
@ -124041,7 +124041,7 @@ var CardInfo = {
|
|||
constEffects: [{
|
||||
condition: function () {
|
||||
return (this.game.turnPlayer === this.player.opponent) &&
|
||||
(this.hands.length >= 6);
|
||||
(this.player.hands.length >= 6);
|
||||
},
|
||||
action: function (set,add) {
|
||||
set(this,'power',12000);
|
||||
|
|
Loading…
Reference in a new issue