forked from mirrors/webxoss-core
commit
d2638cadef
2 changed files with 3 additions and 0 deletions
|
@ -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 () {
|
||||
|
|
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue