mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
95 lines
2.2 KiB
TypeScript
95 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unseen Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Poliwrath",
|
||
fr: "Tartard",
|
||
de: "Quappo"
|
||
},
|
||
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",
|
||
fr: "Tourbillon en spirale",
|
||
de: "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.",
|
||
fr: "Si Tartard est votre Pokémon Actif et qu'il est mis K.O par les dégâts d'une attaque de votre adversaire, le Pokémon Attaquant est maintenant Confus.",
|
||
de: "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",
|
||
fr: "Combat",
|
||
de: "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.",
|
||
fr: "Si le Pokémon Défenseur est un Pokémon ou si son nom comporte Obscur, cette attaque inflige 40 dégâts plus 30 dégâts supplémentaires.",
|
||
de: "If the Defending Pokémon is a 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",
|
||
fr: "Hyper éclaboussure",
|
||
de: "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.",
|
||
fr: "Si le Pokémon Défenseur est un Pokémon Évolué de niveau 2, cette attaque inflige 60 dégâts plus 30 dégâts supplémentaires.",
|
||
de: "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
|