1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

81 lines
1.2 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 '../Unseen Forces'
const card: Card = {
name: {
en: "Poliwrath",
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Poliwhirl",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Spiral Swirl",
},
effect: {
en: "If Poliwrath is your Active Pokémon and is Knocked Out by damage from an opponent's attack, the Attacking Pokémon is now Confused.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Beatdown",
},
effect: {
en: "If the Defending Pokémon is a Darkness Pokémon or has Dark in its name, this attack does 40 damage plus 30 more damage.",
},
damage: 40,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Splash",
},
effect: {
en: "If the Defending Pokémon is a Stage 2 Evolved Pokémon, this attack does 60 damage plus 30 more damage.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card