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: "base5-37", localId: 37, // Card informations name: { en: "Dark Golduck", }, hp: 60, type: [ Type.WATER, ], dexId: 55, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/37/low", }, high: { en: "https://assets.tcgdex.net/en/base/base5/37/high", }, }, evolveFrom: { en: "Psyduck", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Third Eye", }, text: { en: "Discard 1 Energy card attached to Dark Golduck in order to draw up to 3 cards.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Super Psy", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card