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: "neo1-40", localId: 40, // Card informations name: { en: "Magmar", }, hp: 70, type: [ Type.FIRE, ], dexId: 126, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/40/low", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/40/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tail Slap", }, damage: 20 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Magma Punch", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card