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: "sm7-114", localId: 114, // Card informations name: { en: "Vigoroth", fr: "Vigoroth", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 288, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/114/low", fr: "https://assets.tcgdex.net/fr/sm/sm7/114/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/114/high", fr: "https://assets.tcgdex.net/fr/sm/sm7/114/high", }, }, evolveFrom: { en: "Slakoth", fr: "Parecool", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Swipes", fr: "Combo-Griffe", }, text: { en: "Flip 3 coins. This attack does 20 damage for each heads.", fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rage", fr: "Frénésie", }, text: { en: "This attack does 10 more damage for each damage counter on this Pokémon.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card