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: "gym1-53", localId: 53, // Card informations name: { en: "Misty's Poliwhirl", }, hp: 70, type: [ Type.WATER, ], dexId: 61, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/53/low", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/53/high", }, }, evolveFrom: { en: "Poliwag", }, tags: [ Tag.STAGE1, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Rapids", }, text: { en: "If the Defending Pokémon has any Energy cards attached to it, flip a coin. If heads, choose 1 of those Energy cards and discard it.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Water Punch", }, text: { en: "Flip a number of coins equal to the number of Energy attached to Misty's Poliwhirl. This attack does 30 damage plus 10 damage for each heads.", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card