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: "ecard2-60", localId: 60, // Card informations name: { en: "Skiploom", }, hp: 60, type: [ Type.GRASS, ], dexId: 188, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard2/60/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/60/high", }, }, evolveFrom: { en: "Hoppip", }, tags: [ Tag.STAGE1, ], illustrator: "Yuka Morii", abilities: [{ id: 253, type: AbilityType.POKEBODY, name: { en: "Lightweight", }, text: { en: "You pay Colorless less to retreat Skiploom for each Grass Energy attached to it.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Break Powder", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage. If tails, this attack does 10 damage and the Defending Pokémon is now Asleep.", }, damage: 10 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Aquapolis", code: "ecard2" } } export default card