1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

52 lines
858 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪絨蛾"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "翅膀的溫度是零下180度。當牠飛過山野時,帶有冷氣的鱗粉會像下雪般地飄落下來。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "冰雪之舞"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。從自己的手牌選擇1張【水】能量卡附於備戰區的【水】寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "極光束"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card