import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex7-45", localId: 45, // Card informations name: { en: "Mantine", }, hp: 70, type: [ Type.WATER, ], dexId: 226, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/45/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/45/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", abilities: [{ id: 1239, type: AbilityType.POKEPOWER, name: { en: "Ripples", }, text: { 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.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Aqua Slash", }, text: { en: "Mantine can't attack during your next turn.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card