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-34", localId: 34, // Card informations name: { en: "Golduck", fr: "Akwakwak", }, hp: 80, type: [ Type.WATER, ], dexId: 55, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/34/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/34/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/34/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/34/high", }, }, evolveFrom: { en: "Psyduck", fr: "Psykokwak", }, tags: [ Tag.STAGE1, ], illustrator: "match", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Confuse Ray", fr: "Onde Folie", }, text: { en: "The Defending Pokémon is now Confused.", fr: "Le Pokémon Défenseur est maintenant Confus.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Gun", fr: "Pistolet à O", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card