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: "dp7-39", localId: 39, // Card informations name: { en: "Grovyle", fr: "Grovyle", }, hp: 80, type: [ Type.GRASS, ], dexId: 253, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp7/39/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp7/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp7/39/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp7/39/high.png", }, }, evolveFrom: { en: "Treecko", fr: "Arcko", }, tags: [ Tag.STAGE1, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Tail Shake", fr: "Secoue-queue", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 20 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slam", fr: "Souplesse", }, text: { en: "Flip 2 coins. This attack does 60 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de faces.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Stormfront", code: "dp7" } } export default card