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

56 lines
862 B
TypeScript
Raw 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔牆人偶"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
'zh-tw': "擅長踢踏舞。會用冷氣製造出冰之地板並將其踢起,以此作為保護自己的障壁。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "冰凍之風"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "三重旋轉"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×20點傷害。"
},
damage: "20×",
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card