import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Meloetta", fr: "Meloetta", }, illustrator: "kirisAki", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 648, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Accelerating Spin", fr: "Rotation Accélérée", }, effect: { en: "Attach 2 Fighting Energy cards from your discard pile to this Pokémon. Then, switch this Pokémon with 1 of your Benched Pokémon.", fr: "Attachez 2 cartes Énergie Fighting de votre pile de défausse à ce Pokémon. Ensuite, échangez ce Pokémon avec l'un de vos Pokémon de Banc.", }, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Prima Rondo", fr: "Rondo Dansant", }, effect: { en: "If this Pokémon has any Psychic Energy attached to it, this attack does 50 more damage.", fr: "Si de l'Énergie Psychic est attachée à ce Pokémon, cette attaque inflige 50 dégâts supplémentaires.", }, damage: "60+", }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card