import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Phantump", fr: "Brocélôme", }, illustrator: "Sumiyoshi Kizuki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 708, ], hp: 50, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Ascension", fr: "Ascension", }, effect: { en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon. (This counts as evolving this Pokémon.) Shuffle your deck afterward.", fr: "Cherchez dans votre deck une carte Évolution de ce Pokémon et placez-la sur ce Pokémon. (Cela équivaut à faire évoluer ce Pokémon.) Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 2, } export default card