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: "pl4-1", localId: 1, // Card informations name: { en: "Charizard", }, hp: 140, type: [ Type.FIRE, ], dexId: 6, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/1/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/1/high", }, }, evolveFrom: { en: "Charmeleon", }, tags: [ Tag.STAGE2, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 96, type: AbilityType.POKEBODY, name: { en: "Fire Formation", }, text: { en: "Each of Charizard's attacks does 10 more damage for each Fire Pokémon on your Bench to your opponent's Active Pokémon (before applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.FIRE ], name: { en: "Fire Wing", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Burning Tail", }, text: { en: "Discard a Fire Energy attached to Charizard.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "+30" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card