1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

82 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
fr: "Quaputzi",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Focus Punch",
fr: "Mitra-poing",
},
effect: {
en: "If Poliwrath was damaged by an attack during your opponent's last turn, this attack does nothing.",
fr: "Si une attaque a infligé des dégâts à Tartard lors du dernier tour de votre adversaire, cette attaque est sans effet.",
},
damage: 60,
},
{
cost: [
"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: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "+30"
},
],
retreat: 2,
description: {
fr: "Il possède de sacrés biscoteaux. Il peut parcourir sans relâche l'Océan Pacifique."
}
}
export default card