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: "sm35-23", localId: 23, // Card informations name: { en: "Floatzel", fr: "Mustéflott", }, hp: 100, type: [ Type.WATER, ], dexId: 419, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm35/23/low", fr: "https://assets.tcgdex.net/fr/sm/sm35/23/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm35/23/high", fr: "https://assets.tcgdex.net/fr/sm/sm35/23/high", }, }, evolveFrom: { en: "Buizel", fr: "Mustébouée", }, tags: [ Tag.STAGE1, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Razor Fin", fr: "Aileron-Rasoir", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Bomb", fr: "Aqua Bombe", }, text: { en: "This Pokémon does 30 damage to itself.", fr: "Ce Pokémon s’inflige 30 dégâts.", }, damage: 120 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Shining Legends", code: "sm35" } } export default card