mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
615 B
TypeScript
46 lines
615 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
dexId: [808],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meltan",
|
|
fr: "Meltan",
|
|
es: "Meltan",
|
|
it: "Meltan",
|
|
pt: "Meltan",
|
|
de: "Meltan"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Metal"],
|
|
|
|
name: {
|
|
en: "Headbutt",
|
|
fr: "Coup d'Boule",
|
|
es: "Golpe Cabeza",
|
|
it: "Bottintesta",
|
|
pt: "Cabeçada",
|
|
de: "Kopfnuss"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |