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: "ex1-57", localId: 57, // Card informations name: { en: "Makuhita", }, hp: 50, type: [ Type.FIGHTING, ], dexId: 296, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/57/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/57/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fling", }, text: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Low Kick", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card