mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
56 lines
990 B
TypeScript
56 lines
990 B
TypeScript
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 |