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: "dc1-1", localId: 1, // Card informations name: { en: "Team Magma's Numel", fr: "Chamallot de la Team Magma", }, hp: 70, type: [ Type.FIRE, ], dexId: 322, image: { low: { en: "https://assets.tcgdex.net/en/xy/dc1/1/low", fr: "https://assets.tcgdex.net/fr/xy/dc1/1/low", }, high: { en: "https://assets.tcgdex.net/en/xy/dc1/1/high", fr: "https://assets.tcgdex.net/fr/xy/dc1/1/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 48, name: "Akira Komayama" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Ember", fr: "Flammèche", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Double Crisis", code: "dc1" } } export default card