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

56 lines
889 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 泥巴魚"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 100,
types: ["Metal"],
description: {
'zh-tw': "棲息在富含鐵質的泥巴裡,因此獲得了 結實堅固的鋼鐵身軀。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "場地陷阱"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。有丟棄的情況下選擇2個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 20,
cost: ["Metal"]
}, {
name: {
'zh-tw': "撞擊"
},
damage: 50,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "F"
}
export default card