💩 apply reviews

This commit is contained in:
deardrops 2017-09-08 17:21:02 +08:00 committed by webxoss
parent c030c7fe0c
commit d4f1e0e22e

View file

@ -126823,25 +126823,18 @@ var CardInfo = {
],
actionEffects: [{
costDown: true,
costCondition: function () {
var cards = this.player.hands.filter(function (card) {
return card.hasClass('宇宙');
},this);
return cards.length >= 2;
},
costAsyn: function () {
actionAsyn: function () {
var cards = this.player.hands.filter(function (card) {
return card.hasClass('宇宙');
},this);
if (cards.length < 2) return;
return this.player.selectSomeAsyn('PAY',cards,2,2).callback(this,function (cards) {
this.game.trashCards(cards);
var filter = function (card) {
return card.level === 4;
}
return this.player.seekAndSummonAsyn(filter,1,true);
});
},
actionAsyn: function () {
var cards = this.player.mainDeck.filter(function (card) {
return (card.type === 'SIGNI') && (card.level === 4) && card.canSummon();
},this);
return this.player.seekAndSummonAsyn(filter,1,true);
}
}],
// ======================
@ -127154,7 +127147,7 @@ var CardInfo = {
return this.player.opponent.discardAsyn();
} else if (target.level >= 4) {
var filter = function (card) {
return (card.type === 'SIGNI') && (card.hasClass('宇宙');
return card.hasClass('宇宙');
};
return this.player.pickCardAsyn(filter,0,1);
}