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

49 lines
754 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 "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "美錄坦"
},
illustrator: "Sumiyoshi Kizuki",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
'zh-tw': "身體是融化成液狀的鋼鐵。 能夠將地底的鐵或其他金屬 溶解後吸收進體內。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "電擊"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card