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: "ex13-59", localId: 59, // Card informations name: { en: "Baltoy", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 343, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/59/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/59/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Ram", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Doubleslap", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card