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

56 lines
990 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: "Naoki Saito",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "踢踏舞的達人。會揮動手中的冰杖,向觀眾表演輕快的舞步。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "曳步舞"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇1張對手的反面向上的獎賞卡與對手的牌庫最上方的卡維持反面朝上互換。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card