import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm5-87", localId: 87, // Card informations name: { en: "Bronzong", fr: "Archéodong", }, hp: 110, type: [ Type.METAL, ], dexId: 437, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/87/low", fr: "https://assets.tcgdex.net/fr/sm/sm5/87/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/87/high", fr: "https://assets.tcgdex.net/fr/sm/sm5/87/high", }, }, evolveFrom: { en: "Bronzor", fr: "Archéomire", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.METAL ], 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 },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psychic Resonance", fr: "Résonance Psychique", }, text: { en: "If your opponent has any Psychic Pokémon in play, this attack does 60 more damage.", fr: "Si votre adversaire a un Pokémon Psychic en jeu, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card