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' import set from '../../../sets/swsh/swsh4' const card: Card = { // Card Global Informations id: "swsh4-175", localId: 175, name: { en: "Drapion V", }, illustrator: "Eske Yoshinob", rarity: Rarity.ULTRARARE, category: Category.POKEMON, set, // Card Pokémon Informations hp: 210, type: [ Type.DARKNESS, ], attacks: [ { cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Wrack Down", }, damage: 70, }, { cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, ], name: { en: "Hazardous Claws", }, text: { en: "Discard 2 Energy from this Pokémon. Your opponent’s Active Pokémon is now Paralyzed and Poisoned.", }, damage: 130, }, ], weaknesses: [ { type: Type.FIGHTING, value: "×2", }, ], retreat: 3, // Card Trainer/Energy informations } export default card