mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
82 lines
1.1 KiB
TypeScript
82 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Neo Discovery'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Poliwrath",
|
||
fr: "Tartard",
|
||
de: "Quappo"
|
||
},
|
||
|
||
illustrator: "Shin-ichi Yoshida",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
62,
|
||
],
|
||
|
||
hp: 90,
|
||
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Poliwhirl",
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Corkscrew Punch",
|
||
fr: "Poing tire-bouchon",
|
||
de: "Corkscrew Punch"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Submission",
|
||
fr: "Sacrifice",
|
||
de: "Submission"
|
||
},
|
||
effect: {
|
||
en: "Poliwrath does 20 damage to itself.",
|
||
fr: "Tartard s'inflige 20 dégâts.",
|
||
de: "Poliwrath does 20 damage to itself"
|
||
},
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "Bien qu'excellent nageur qui utilise tous ses muscles, il vit sur la terre ferme."
|
||
}
|
||
}
|
||
|
||
export default card
|