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: "hgss4-83", localId: 83, // Card informations name: { en: "Voltorb", fr: "Voltorbe", }, hp: 40, type: [ Type.LIGHTNING, ], dexId: 100, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss4/83/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/83/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss4/83/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss4/83/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Magnetic Bomb", fr: "Bombe magnétique", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage. If tails, Voltorb does 10 damage to itself.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Voltorbe s'inflige 10 dégâts.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Triumphant", code: "hgss4" } } export default card