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: "ex6-11", localId: 11, // Card informations name: { en: "Poliwrath", }, hp: 120, type: [ Type.WATER, ], dexId: 62, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/11/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/11/high.png", }, }, evolveFrom: { en: "Poliwhirl", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 127, type: AbilityType.POKEBODY, name: { en: "Spiral", }, text: { en: "As long as Poliwrath is your Active Pokémon, your opponent's Confused Pokémon can't retreat.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Split Spiral Punch", }, text: { en: "The Defending Pokémon is now Confused.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mega Throw", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card