forked from mirrors/webxoss-core
💩 coding card effects
This commit is contained in:
parent
7902b06282
commit
b2104749a1
1 changed files with 17 additions and 3 deletions
20
CardInfo.js
20
CardInfo.js
|
@ -124699,11 +124699,25 @@ var CardInfo = {
|
||||||
"costGreen": 0,
|
"costGreen": 0,
|
||||||
"costColorless": 0,
|
"costColorless": 0,
|
||||||
"guardFlag": false,
|
"guardFlag": false,
|
||||||
cardSkills: [
|
"multiEner": false,
|
||||||
|
cardText: "あら、お客さんかしら……?~カーニバル~",
|
||||||
|
// ======================
|
||||||
|
// 出场效果
|
||||||
|
// ======================
|
||||||
|
startUpEffectTexts: [
|
||||||
"【出】手札を1枚捨てる:《コインアイコン》を得る。"
|
"【出】手札を1枚捨てる:《コインアイコン》を得る。"
|
||||||
],
|
],
|
||||||
"multiEner": false,
|
startUpEffects: [{
|
||||||
cardText: "あら、お客さんかしら……?~カーニバル~"
|
costCondition: function () {
|
||||||
|
return this.player.hands.length;
|
||||||
|
},
|
||||||
|
costAsyn: function () {
|
||||||
|
return this.player.discardAsyn(1);
|
||||||
|
},
|
||||||
|
actionAsyn: function () {
|
||||||
|
this.player.gainCoins(1);
|
||||||
|
}
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
"2443": {
|
"2443": {
|
||||||
"pid": 2443,
|
"pid": 2443,
|
||||||
|
|
Loading…
Reference in a new issue