mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
765 B
TypeScript
59 lines
765 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Stellar Crown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meltan",
|
|
fr: "Meltan",
|
|
es: "Meltan",
|
|
it: "Meltan",
|
|
pt: "Meltan",
|
|
de: "Meltan"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal"],
|
|
|
|
name: {
|
|
en: "Stampede",
|
|
fr: "Ruée",
|
|
es: "Estampida",
|
|
it: "Fuggi Fuggi",
|
|
pt: "Estouro",
|
|
de: "Zertrampeln"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Metal", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Beam",
|
|
fr: "Rayon",
|
|
es: "Transmisión",
|
|
it: "Raggio",
|
|
pt: "Feixe",
|
|
de: "Strahl"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|