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

48 lines
947 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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "美錄坦",
th: "เมลตัน"
},
illustrator: "Masa",
category: "Pokemon",
hp: 80,
types: ["Metal"],
description: {
'zh-tw': "會溶解金屬然後吃掉。透過讓液體金屬在體內 循環來製造能量。",
th: "หลอมละลายโลหะแล้วกินเข้าไป ทำให้โลหะเหลวไหลเวียนไปทั่วร่างเพื่อสร้างพลังงานภายในร่างกาย"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭錘",
th: "พุ่งหัวชน"
},
damage: 50,
cost: ["Metal", "Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card