import { Card } from '../../../interfaces' import Set from '../Black & White' const card: Card = { name: { en: "Tepig", fr: "Gruikui", es: "Tepig", it: "Tepig", pt: "Tepig", de: "Floink" }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 498, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Take Down", fr: "Bélier", }, effect: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s’inflige 10 dégâts.", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 2, } export default card