import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Tepig", }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 498, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Take Down", }, effect: { en: "This Pokémon does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2 } export default card