import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Pupitar", }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 247, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Larvitar", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Pressurized Gas", }, effect: { en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Rocket Tackle", }, effect: { en: "Pupitar does 10 damage to itself. Flip a coin. If heads, prevent all damage done to Pupitar by attacks during your opponent's next turn.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "+20" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], } export default card