diff --git a/CardInfo.js b/CardInfo.js index b342148..f41e18d 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -126199,7 +126199,7 @@ var CardInfo = { description: '2458-const-0', optional: true, condition: function (card) { - return card.isAcced; + return card.isAcced(); }, actionAsyn: function (card) { var cards = card.getAccedCards(); @@ -131532,12 +131532,13 @@ var CardInfo = { ], actionEffects: [{ attackPhase: true, + useCondition: function () { + return this.player.signis.some(function (signi) { + return signi.isAcced(); + },this); + }, costCondition: function () { - return this.canTrashAsCost() && this.player.signis.some(function (signi) { - // TODO: 判断自己场上有否有acce的signi - // TODO: FQ 自身被acce的时候,也可以发动 - return true; - }); + return this.canTrashAsCost(); }, costAsyn: function () { this.trash();