mirror of
https://github.com/webxoss/webxoss-core.git
synced 2025-02-13 16:13:26 +01:00
💩 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,
|
||||
"costColorless": 0,
|
||||
"guardFlag": false,
|
||||
cardSkills: [
|
||||
"multiEner": false,
|
||||
cardText: "あら、お客さんかしら……?~カーニバル~",
|
||||
// ======================
|
||||
// 出场效果
|
||||
// ======================
|
||||
startUpEffectTexts: [
|
||||
"【出】手札を1枚捨てる:《コインアイコン》を得る。"
|
||||
],
|
||||
"multiEner": false,
|
||||
cardText: "あら、お客さんかしら……?~カーニバル~"
|
||||
startUpEffects: [{
|
||||
costCondition: function () {
|
||||
return this.player.hands.length;
|
||||
},
|
||||
costAsyn: function () {
|
||||
return this.player.discardAsyn(1);
|
||||
},
|
||||
actionAsyn: function () {
|
||||
this.player.gainCoins(1);
|
||||
}
|
||||
}]
|
||||
},
|
||||
"2443": {
|
||||
"pid": 2443,
|
||||
|
|
Loading…
Reference in a new issue