import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Mantine", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 226, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Water", ], name: { en: "Giant Wave", }, effect: { en: "Mantine can't attack during your next turn.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card