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: "gym1-31", localId: 31, // Card informations name: { en: "Misty's Poliwrath", }, hp: 90, type: [ Type.WATER, ], dexId: 62, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/31/high.png", }, }, evolveFrom: { en: "Poliwhirl", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Water Ring", }, text: { en: "Does 10 damage to each Pokémon that isn't on each player's Bench. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card