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: "bw1-39", localId: 39, // Card informations name: { en: "Alomomola", fr: "Mamanbo", }, hp: 100, type: [ Type.WATER, ], dexId: 594, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/39/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/39/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/39/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/39/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Pulse", fr: "Vibraqua", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hydro Pump", fr: "Hydrocanon", }, text: { en: "Does 10 more damage for each Water Energy attached to this Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card