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

76 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 '../Evolutions'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
fr: "Têtarte",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Dashing Punch",
fr: "Poing Épique",
},
effect: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 50 more damage.",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 50,
},
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Whirlpool",
fr: "Siphon",
},
effect: {
en: "Discard an Energy attached to your opponent's Active Pokémon.",
fr: "Défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card