1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

79 lines
1.3 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 '../Sandstorm'
const card: Card = {
name: {
en: "Wailord ex",
fr: "Wailord ex"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
321,
],
hp: 200,
types: [
"Water",
],
evolveFrom: {
en: "Wailmer",
},
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Super Deep Dive",
fr: "Super gros plongeon"
},
effect: {
en: "If you don't have any Benched Pokémon, this attack does nothing. Remove 3 damage counters from Wailord ex. Switch Wailord ex with 1 of your Benched Pokémon.",
fr: "Si vous n'avez pas de Pokémon sur votre Banc, cette attaque est sans effet. Retirez à Wailord ex trois marqueurs de dégât. Échangez Wailord ex contre un des Pokémon de votre Banc."
},
},
{
cost: [
"Water",
"Water",
"Water",
"Colorless",
],
name: {
en: "Dwindling Wave",
fr: "Vague diminutrice"
},
effect: {
en: "Does 100 damage minus 10 damage for each damage counter on Wailord ex.",
fr: "Inflige 100 dégâts moins 10 dégâts pour chaque marqueur de dégât sur Wailord ex."
},
damage: "100-",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Lightning",
value: "×2"
},
],
}
export default card