1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard",
es: "Poliwrath",
it: "Poliwrath",
pt: "Poliwrath",
de: "Quappo"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 150,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
fr: "Têtarte",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Knuckle Punch",
fr: "CoudPhalange",
es: "Puño con Nudillos",
it: "Noccapugno",
pt: "Soco com Punho",
de: "Knöchelhieb"
},
damage: 50,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Swirly Rush",
fr: "Ruée en Tourbillon",
es: "Embestida Remolino",
it: "Arrembaggio Spirale",
pt: "Investida Espiral",
de: "Wirbelrausch"
},
effect: {
en: "If Poliwag and Poliwhirl are on your Bench, this attack does 90 more damage.",
fr: "Si Ptitard et Têtarte sont sur votre Banc, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si Poliwag y Poliwhirl están en tu Banca, este ataque hace 90 puntos de daño más.",
it: "Se Poliwag e Poliwhirl sono nella tua panchina, questo attacco infligge 90 danni in più.",
pt: "Se Poliwag e Poliwhirl estiverem no seu Banco, este ataque causará 90 pontos de dano a mais.",
de: "Wenn sich Quapsel und Quaputzi auf deiner Bank befinden, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card