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: "xy8-16", localId: 16, // Card informations name: { en: "Skiddo", fr: "Cabriolaine", }, hp: 70, type: [ Type.GRASS, ], dexId: 672, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/16/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/16/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/16/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/16/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kanako Eo", attacks: [{ cost: [ Type.GRASS ], name: { en: "Razor Leaf", fr: "Tranch'Herbe", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Rising Lunge", fr: "Botte Secrète", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card