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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/34/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/34/high.png", }, }, evolveFrom: { en: "Psyduck", fr: "Psykokwak", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "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