mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
46 lines
598 B
TypeScript
46 lines
598 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [808],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Meltan",
|
|
en: "Meltan",
|
|
es: "Meltan",
|
|
it: "Meltan",
|
|
pt: "Meltan",
|
|
de: "Meltan"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal"],
|
|
|
|
name: {
|
|
fr: "Dissolution",
|
|
en: "Melt",
|
|
es: "Derretir",
|
|
it: "Liquefazione",
|
|
pt: "Derreter",
|
|
de: "Schmelzen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |