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: "sm8-58", localId: 58, // Card informations name: { en: "Mantine", fr: "Démanta", }, hp: 120, type: [ Type.WATER, ], dexId: 226, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/58/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/58/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/58/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/58/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 39, name: "Sanosuke Sakuma" }, abilities: [{ id: 1247, type: AbilityType.TALENT, name: { en: "Mantine Surf", fr: "Surf Démanta", }, text: { 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: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Surf", fr: "Surf", }, damage: 100 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card