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: "pl2-62", localId: 62, // Card informations name: { en: "Gliscor 4", fr: "Scorvol Niv. 53", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 472, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/62/low", fr: "https://assets.tcgdex.net/fr/pl/pl2/62/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/62/high", fr: "https://assets.tcgdex.net/fr/pl/pl2/62/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Irongrip", fr: "Poigne de fer", }, damage: 10 },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Loaded Needle", fr: "Aiguille chargée", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage. If tails, the Defending Pokémon is now Poisoned.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 30 dégâts supplémentaires. Si c'est pile, le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 10 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card