1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

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

* Added Sets titles

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

* fix: Finished last EX sets

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

* Change Discord Link text
2021-11-15 16:24:10 +01:00

88 lines
1.7 KiB
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 '../Unseen Forces'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard"
},
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"
},
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."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Beatdown",
fr: "Combat"
},
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."
},
damage: "40+",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Splash",
fr: "Hyper éclaboussure"
},
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."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card