forked from mirrors/webxoss-core
Fix WX14-009
This commit is contained in:
parent
a26a71362c
commit
0132815c3a
1 changed files with 6 additions and 1 deletions
|
@ -117872,8 +117872,13 @@ var CardInfo = {
|
||||||
],
|
],
|
||||||
actionEffects: [{
|
actionEffects: [{
|
||||||
costExceed: 1,
|
costExceed: 1,
|
||||||
once: true,
|
useCondition: function () {
|
||||||
|
return !(this.game.getData(this,'_1909') >= 2)
|
||||||
|
},
|
||||||
actionAsyn: function () {
|
actionAsyn: function () {
|
||||||
|
var count = this.game.getData(this,'_1909') || 0;
|
||||||
|
count++
|
||||||
|
this.game.setData(this,'_1909',count);
|
||||||
var filter = function (card) {
|
var filter = function (card) {
|
||||||
return (card.name.indexOf('フレイスロ') !== -1);
|
return (card.name.indexOf('フレイスロ') !== -1);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue