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: "sm10-88", localId: 88, // Card informations name: { en: "Graveler", fr: "Gravalanch", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 75, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/88/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/88/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/88/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/88/high.png", }, }, evolveFrom: { en: "Geodude", fr: "Racaillou", }, tags: [ Tag.STAGE1, ], illustrator: { id: 6, name: "Ayaka Yoshida" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rolling Rocks", fr: "Rochers Roulants", }, damage: 50 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-Edge", fr: "Damoclès", }, text: { en: "This Pokémon does 30 damage to itself.", fr: "Ce Pokémon s’inflige 30 dégâts.", }, damage: 90 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card