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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/base/base5/37/high.png", }, }, evolveFrom: { en: "Psyduck", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "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