1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/049.ts

40 lines
561 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Meltan"
},
illustrator: "HYOGONOSUKE",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Metal"],
description: {
en: "It dissolves and eats metal. Circulating liquid\nmetal within its body is how it generates energy."
},
stage: "Basic",
attacks: [{
name: {
en: "Headbutt"
},
damage: 20,
cost: ["Metal"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1
}
export default card