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: "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.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/62/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/62/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl2/62/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "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