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/mc/2021swsh' const card: Card = { // ids id: "2021sw-9", localId: 9, // Card informations name: { en: "Charmander", fr: "Salamèche", }, hp: 70, type: [ Type.FIRE, ], dexId: 4, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", fr: "Griffe", }, damage: 10 },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Flame Tail", fr: "Queue de Flammes", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: set } export default card