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-44", localId: 44, name: { en: "Pikachu VMAX", }, tags: [ ], illustrator: "aky CG Works", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations evolveFrom: { en: "Pikachu V", }, hp: 310, type: [ Type.LIGHTNING, ], attacks: [ { cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.LIGHTNING, ], name: { en: "G-Max Volt Tackle", }, text: { en: "You may discard all Energy from this Pokémon. If you do, this attack does 150 more damage.", }, damage: "120+", }, ], weaknesses: [ { type: Type.FIGHTING, value: "×2", }, ], retreat: 2, // Card Trainer/Energy informations } export default card