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

81 lines
1.4 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Shiftry",
fr: "Tengalice"
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
275,
],
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Nuzleaf",
},
stage: "Stage2",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Push Aside",
fr: "Pousser de côté"
},
effect: {
en: "Look at your opponent's hand and choose 1 Basic Pokémon or Evolution card you find there. Your opponent puts it at the bottom of his or her deck.",
fr: "Regardez la main de votre adversaire et choisissez 1 Pokémon de base ou une carte Évolution. Votre adversaire place cette carte au dessous de son deck."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Supernatural Power",
fr: "Extrasenseur"
},
effect: {
en: "If you have the same number of cards in your hand as your opponent, this attack does 40 damage plus 40 more damage.",
fr: "Si vous possédez le même nombre de cartes dans votre main que votre adversaire, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card