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

118 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: "Tyranitar ex",
fr: "Tyranocif ex"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 160,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
},
suffix: "EX",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Shatter",
fr: "Fracasser"
},
effect: {
en: "Discard any Stadium card in play.",
fr: "Défaussez n'importe quelle carte Stade en jeu."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Derail",
fr: "Dérailler"
},
effect: {
en: "Discard a Special Energy card, if any, attached to the Defending Pokémon.",
fr: "Défaussez une carte Énergie spéciale attachée au Pokémon Défenseur, s'il en a."
},
damage: 30,
},
{
cost: [
"Fighting",
"Darkness",
"Colorless",
],
name: {
en: "Mix-Up",
fr: "Mélange"
},
effect: {
en: "Your opponent discards the top card of his or her deck.",
fr: "Votre adversaire défausse la carte du dessus de son deck."
},
damage: 70,
},
{
cost: [
"Fighting",
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Losing Control",
fr: "Perdre contrôle"
},
effect: {
en: "Discard the top 3 cards of your deck.",
fr: "Défaussez les 3 cartes du dessus de votre deck."
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card