import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm6-10", localId: 10, // Card informations name: { en: "Gogoat", fr: "Chevroum", }, hp: 120, type: [ Type.GRASS, ], dexId: 673, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/10/low", fr: "https://assets.tcgdex.net/fr/sm/sm6/10/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/10/high", fr: "https://assets.tcgdex.net/fr/sm/sm6/10/high", }, }, evolveFrom: { en: "Skiddo", fr: "Cabriolaine", }, tags: [ Tag.STAGE1, ], illustrator: "Anesaki Dynamic", attacks: [{ cost: [ Type.GRASS ], name: { en: "Milk Drink", fr: "Lait à Boire", }, text: { en: "Flip 2 coins. For each heads, heal 40 damage from this Pokémon.", fr: "Lancez 2 pièces. Pour chaque côté face, soignez 40 dégâts à ce Pokémon.", }, },{ cost: [ Type.GRASS, 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: 120 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card