import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/45/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "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