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: "sm115-34", localId: 34, // Card informations name: { en: "Graveler", fr: "Gravalanch", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 75, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm115/34/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm115/34/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/34/high.png", }, }, evolveFrom: { en: "Geodude", fr: "Racaillou", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tackle", fr: "Charge", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mudslide", fr: "Coulée de Boue", }, text: { en: "Discard 2 Fighting Energy from this Pokémon. This attack does 80 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Défaussez 2 Énergies Fighting de ce Pokémon. Cette attaque inflige 80 dégâts à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Hidden Fates", code: "sm115" } } export default card