diff --git a/CardInfo.js b/CardInfo.js index cbf3c0b..6149525 100644 --- a/CardInfo.js +++ b/CardInfo.js @@ -86292,6 +86292,7 @@ var CardInfo = { "imgUrl": "http://www.takaratomy.co.jp/products/wixoss/wxwp/images/card/WX11/WX11-013.jpg", "illust": "bomi", "classes": [ + "精羅", "宇宙" ], "costWhite": 0, @@ -90657,6 +90658,7 @@ var CardInfo = { triggerCondition: function (event) { if (!inArr(this,this.player.signis)) return false; if (!this.game.getEffectSource()) return false; + if (!event.card.hasClass('アーム')) return false; return true; }, actionAsyn: function () { diff --git a/Player.js b/Player.js index c56bc52..cdef2c8 100644 --- a/Player.js +++ b/Player.js @@ -261,6 +261,7 @@ Player.prototype.up = function () { // 返回: // cards: Array,抽到的卡,长度可能少于n(卡组没有足够的卡可以抽),也可能为空数组. Player.prototype.draw = function (n) { + if (this.addCardToHandBanned) return []; var cards = this.mainDeck.getTopCards(n); if (!cards.length) return []; if (this.game.phase.isAttackPhase()) {