import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Mantine", de: "Mantax" }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 226, ], hp: 70, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Ripples", de: "Ripples" }, effect: { en: "Once during your turn (before your attack), you may remove 1 damage counter from 1 of your Pokémon (excluding Mantine). This power can't be used if Mantine is affected by a Special Condition.", de: "Once during your turn (before your attack), you may remove 1 damage counter from 1 of your Pokémon (excluding Mantine). This power can't be used if Mantine is affected by a Special Condition." }, }, ], attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Aqua Slash", de: "Aqua Slash" }, effect: { en: "Mantine can't attack during your next turn.", de: "Mantine can't attack during your next turn." }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card