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: "ex6-32", localId: 32, // Card informations name: { en: "Drowzee", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 96, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/32/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/32/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hypnosis", }, text: { en: "The Defending Pokémon is now Asleep.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Ambush", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card