1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

57 lines
930 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Poliwrath"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 150,
types: ["Water"],
stage: "Stage2",
evolveFrom: {
en: "Poliwhirl"
},
abilities: [{
type: "Ability",
name: {
en: "Counterattack"
},
effect: {
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon."
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
en: "Mega Punch"
},
damage: "80"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2,
rarity: "Three Diamond",
description: {
en: "Its body is solid muscle. When swimming through cold seas, Poliwrath uses its impressive arms to smash through drift ice and plow forward.",
}
}
export default card