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/swsh3' const card: Card = { // Card Global Informations id: "swsh3-191", localId: 191, name: { en: "Centiskorch VMAX", }, illustrator: "5ban Graphics", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations evolveFrom: { en: "Centiskorch V", }, hp: 320, type: [ Type.FIRE, ], attacks: [ { cost: [ Type.COLORLESS, Type.COLORLESS, ], name: { en: "G-Max Centiferno", }, text: { en: "This attack does 40 more damage for each Fire Energy attached to this Pokémon. If you did any damage with this attack, you may attach a Fire Energy card from your discard pile to this Pokémon.", }, damage: "40+", }, ], weaknesses: [ { type: Type.WATER, value: "×2", }, ], retreat: 3, // Card Trainer/Energy informations } export default card