import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Mantine", fr: "Démanta", }, illustrator: "Sanosuke Sakuma", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 226, ], hp: 120, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Mantine Surf", fr: "Surf Démanta", }, effect: { en: "If this Pokémon has any Energy attached to it, it has no Retreat Cost.", fr: "Si de l’Énergie est attachée à ce Pokémon, il n’a pas de Coût de Retraite.", }, }, ], attacks: [ { cost: [ "Water", "Water", "Colorless", ], name: { en: "Surf", fr: "Surf", }, damage: 100, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 3, } export default card