mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
54 lines
843 B
TypeScript
54 lines
843 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "雪絨蛾"
|
||
},
|
||
|
||
illustrator: "chibi",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
'zh-tw': "絕不放過破壞山野環境的人。會用冰冷的翅膀四處飛翔,製造出暴風雪來懲罰他們。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "冰凍之風"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "暴雪閉環"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將這隻寶可夢身上附加的能量全部放回手牌。"
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Water", "Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |