import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw11-19", localId: 19, // Card informations name: { en: "Charizard", }, hp: 160, type: [ Type.FIRE, ], dexId: 6, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/19/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/19/high.png", }, }, evolveFrom: { en: "Charmeleon", }, tags: [ Tag.STAGE2, ], illustrator: { id: 20, name: "TOKIYA" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Split Bomb", }, text: { en: "This attack does 40 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Scorching Fire", }, text: { en: "Discard a Fire Energy attached to this Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card