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: "pop6-6", localId: 6, // Card informations name: { en: "Drifloon", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 425, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop6/6/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop6/6/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Blowing Wind", }, text: { en: "Flip a coin. If heads, put 1 of your Benched Pokémon and all cards attached to on top of your deck. Shuffle your deck afterward.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Ominous Wind", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused and can't retreat during your opponent's next turn.", }, damage: 10 }], weaknesses: [{ type: Type.DARKNESS, value: "+10" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "POP Series 6", code: "pop6" } } export default card