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: "bw7-37", localId: 37, // Card informations name: { en: "Azumarill", fr: "Azumarill", }, hp: 90, type: [ Type.WATER, ], dexId: 184, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/37/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/37/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/37/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/37/high", }, }, evolveFrom: { en: "Marill", fr: "Marill", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Deep Dive", fr: "Plongée Profonde", }, text: { en: "Flip 2 coins. For each heads, heal 40 damage from this Pokémon.", fr: "Lancez 2 pièces. Pour chaque côté face, soignez 40 dégâts à ce Pokémon.", }, },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Aqua Sonic", fr: "Aquasonique", }, text: { en: "This attack's damage isn't affected by Resistance.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.", }, damage: 70 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card