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

72 lines
1.5 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 '../Power Keepers'
const card: Card = {
name: {
en: "Walrein ex",
fr: "Kaimorse ex"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
365,
],
hp: 150,
types: [
"Water",
],
evolveFrom: {
en: "Sealeo",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Chilling Breath",
fr: "Haleine glaçante"
},
effect: {
en: "Once during your turn, when you play Walrein ex from your hand to evolve 1 of your Pokémon, you may use this power. Your opponent can't play any Trainer cards from his or her hand during your opponent's next turn.",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Kaimorse ex de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez utiliser ce pouvoir. Votre adversaire ne peut pas jouer de carte Dresseur de sa main lors de son prochain tour."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Wreck",
fr: "Anéantissement"
},
effect: {
en: "If there is any Stadium card in play, this attack does 70 damage plus 20 more damage. Discard that Stadium card.",
fr: "Si une carte Stade est en jeu, cette attaque inflige 70 dégâts plus 20 dégâts supplémentaires. Défaussez cette carte Stade."
},
damage: "70+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card