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: "sm7-78", localId: 78, // Card informations name: { en: "Baltoy", fr: "Balbuto", }, hp: 60, type: [ Type.FIGHTING, ], dexId: 343, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/78/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/78/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/78/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/78/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Psy Bolt", fr: "Choc Mental", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 20 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card