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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/16/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/16/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/16/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 40, name: "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