1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

81 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Poliwrath",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Spiral",
},
effect: {
en: "As long as Poliwrath is your Active Pokémon, your opponent's Confused Pokémon can't retreat.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Split Spiral Punch",
},
effect: {
en: "The Defending Pokémon is now Confused.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Mega Throw",
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 50 damage plus 30 more damage.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card