forked from mirrors/webxoss-core
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: {
|
artsEffect: {
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
return Callback.immediately().callback(this,function () {
|
return Callback.immediately().callback(this,function () {
|
||||||
if (this.hands.length) return;
|
if (this.player.hands.length) return;
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return (card.type === 'SIGNI');
|
return (card.type === 'SIGNI');
|
||||||
};
|
};
|
||||||
|
@ -123983,7 +123983,7 @@ var CardInfo = {
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
condition: function () {
|
condition: function () {
|
||||||
return (this.game.turnPlayer === this.player.opponent) &&
|
return (this.game.turnPlayer === this.player.opponent) &&
|
||||||
(this.hands.length >= 6);
|
(this.player.hands.length >= 6);
|
||||||
},
|
},
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
set(this,'power',15000);
|
set(this,'power',15000);
|
||||||
|
@ -124041,7 +124041,7 @@ var CardInfo = {
|
||||||
constEffects: [{
|
constEffects: [{
|
||||||
condition: function () {
|
condition: function () {
|
||||||
return (this.game.turnPlayer === this.player.opponent) &&
|
return (this.game.turnPlayer === this.player.opponent) &&
|
||||||
(this.hands.length >= 6);
|
(this.player.hands.length >= 6);
|
||||||
},
|
},
|
||||||
action: function (set,add) {
|
action: function (set,add) {
|
||||||
set(this,'power',12000);
|
set(this,'power',12000);
|
||||||
|
|
Loading…
Reference in a new issue