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: "ex8-53", localId: 53, // Card informations name: { en: "Baltoy", }, hp: 50, type: [ Type.FIGHTING, ], dexId: 343, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/53/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 99, name: "Kenkichi Toyama" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Spinning Attack", }, damage: 10 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Selfdestruct", }, text: { en: "Does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.) Baltoy does 50 damage to itself.", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card