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: "xy3-55", localId: 55, // Card informations name: { en: "M Lucario-EX", }, hp: 220, type: [ Type.FIGHTING, ], dexId: 448, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/55a/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/55a/high.png", }, }, evolveFrom: { en: "Lucario-EX", }, tags: [ Tag.MEGA, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Rising Fist", }, text: { en: "Discard an Energy attached to your opponent's Active Pokémon.", }, damage: 140 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card