1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

78 lines
990 B
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 '../Neo Discovery'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard"
},
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"
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Submission",
fr: "Sacrifice"
},
effect: {
en: "Poliwrath does 20 damage to itself.",
fr: "Tartard s'inflige 20 dégâts."
},
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