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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard2/60/high.png", }, }, evolveFrom: { en: "Hoppip", }, tags: [ Tag.STAGE1, ], illustrator: { id: 45, name: "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