import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Meltan", fr: "Meltan", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 808, ], hp: 60, types: [ "Metal", ], stage: "Basic", attacks: [ { cost: [ "Metal", ], name: { en: "Multiply", fr: "Multiplication", }, effect: { en: "Search your deck for Meltan and put it onto your Bench. Then, shuffle your deck.", fr: "Cherchez Meltan dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Beam", fr: "Rayon", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card