1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

58 lines
739 B
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 '../Gym Heroes'
const card: Card = {
name: {
en: "Misty's Poliwrath",
},
illustrator: "Ken Sugimori",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Water Ring",
},
effect: {
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: "Grass",
value: "×2"
},
],
}
export default card