import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Pignite", }, illustrator: "Kanako Eo", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 499, ], hp: 100, types: [ "Fire", ], evolveFrom: { en: "Tepig", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Rollout", }, damage: 20, }, { cost: [ "Fire", "Fire", "Colorless", ], name: { en: "Flamethrower", }, effect: { en: "Discard an Energy attached to this Pokémon.", }, damage: 70, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 3 } export default card