From 38da4b2a0629b8b57e059b1cf8c750f2b6f1722d Mon Sep 17 00:00:00 2001 From: WEBXOSS Date: Sat, 8 Apr 2017 15:30:43 +0800 Subject: [PATCH] fix WX15-089 WX15-090 WX15-091 const --- CardInfo.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CardInfo.js b/CardInfo.js index 1e22d7a..2222ad8 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -135315,7 +135315,7 @@ var CardInfo = { ], constEffects: [{ condition: function () { - return this.player.signis.some(function (signi) { + return this.player.opponent.signis.some(function (signi) { return signi.power >= 10000; },this); }, @@ -135370,7 +135370,7 @@ var CardInfo = { ], constEffects: [{ condition: function () { - return this.player.signis.some(function (signi) { + return this.player.opponent.signis.some(function (signi) { return signi.power >= 7000; },this); }, @@ -135425,7 +135425,7 @@ var CardInfo = { ], constEffects: [{ condition: function () { - return this.player.signis.some(function (signi) { + return this.player.opponent.signis.some(function (signi) { return signi.power >= 3000; },this); },