import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Pupitar", }, illustrator: "Sekio", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Larvitar", }, attacks: [ { cost: [ "Fighting", ], name: { en: "Sand Spray", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Rocket Evolution", }, effect: { en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon to evolve it. Then, shuffle your deck.", }, damage: 40, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card