mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-01-18 19:56:02 +01:00
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: [{
|
||||
costExceed: 1,
|
||||
once: true,
|
||||
useCondition: function () {
|
||||
return !(this.game.getData(this,'_1909') >= 2)
|
||||
},
|
||||
actionAsyn: function () {
|
||||
var count = this.game.getData(this,'_1909') || 0;
|
||||
count++
|
||||
this.game.setData(this,'_1909',count);
|
||||
var filter = function (card) {
|
||||
return (card.name.indexOf('フレイスロ') !== -1);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue