import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Hippopotas", fr: "Hippopotas", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 449, ], hp: 90, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Rolling Tackle", fr: "Roulé-Boulé", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 3, } export default card