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

62 lines
998 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 泥巴魚"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "棲息在富含鐵質的泥巴裡,因此獲得了結實堅固的鋼鐵身軀。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "反擊"
},
effect: {
'zh-tw': "這隻寶可夢在戰鬥場受到對手的寶可夢招式的傷害時在使用招式的寶可夢身上放置3個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "夾封"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "D"
}
export default card