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.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Sableye",
fr: "Tenefix"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
302,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Night Vision",
fr: "Vision de nuit"
},
effect: {
en: "Once during your turn (before your attack), if Sableye is your Active Pokémon, you may look at your opponent's hand. This power can't be used if Sableye is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Tenefix est votre Pokémon Actif, vous pouvez regarder la main de votre adversaire. Ce pouvoir ne peut pas être utilisé si Tenefix est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche"
},
damage: 10,
},
{
cost: [
"Darkness",
],
name: {
en: "Limitation",
fr: "Restriction"
},
effect: {
en: "Your opponent can't play any Supporter cards from his or her hand during your opponent's next turn.",
fr: "Votre adversaire ne peut pas jouer de cartes Supporter de sa main lors de son prochain tour."
},
},
],
resistances: [
{
type: "Colorless",
value: "-30"
},
],
}
export default card