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: "xy3-82", localId: 82, // Card informations name: { en: "Vigoroth", fr: "Vigoroth", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 288, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/82/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/82/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/82/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/82/high.png", }, }, evolveFrom: { en: "Slakoth", fr: "Parecool", }, tags: [ Tag.STAGE1, ], illustrator: { id: 29, name: "Suwama Chiaki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", fr: "Griffe", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Reckless Charge", fr: "Attaque Imprudente", }, text: { en: "Flip a coin. If tails, this Pokémon does 20 damage to itself.", fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 20 dégâts.", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card