import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Mew V", fr: "Mew V" }, illustrator: "PLANETA Mochizuki", rarity: "Rare", category: "Pokemon", set: Set, hp: 180, types: [ "Psychic", ], attacks: [ { cost: [ "Psychic", "Psychic", ], name: { en: "X Ball", fr: "X Ball" }, effect: { en: "This attack does 30 damage for each Energy attached to both Active Pokémon.", fr: "Cette attaque inflige 30 dégâts pour chaque Énergie attachée aux deux Pokémon Actifs." }, damage: "30×", }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card