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

100 lines
1.8 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 '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Sceptile ex",
fr: "Jungko ex"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
254,
],
hp: 150,
types: [
"Grass",
],
suffix: "EX",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Green Heal",
fr: "Guérison verte"
},
effect: {
en: "Remove 4 damage counters from each of your Pokémon that has Grass Energy attached. If that Pokémon has less than 4 damage counters, remove all of them.",
fr: "Retirez 4 marqueurs de dégât à chacun de vos Pokémon possédant une Énergie . Si ces Pokémon possèdent moins de 4 marqueurs de dégât, retirez-les tous."
},
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Poison Ring",
fr: "Anneau de poison"
},
effect: {
en: "The Defending Pokémon is now Poisoned. The Defending Pokémon can't retreat until the end of your opponent's next turn.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Il ne peut pas battre en retraite avant la fin du prochain tour de votre adversaire."
},
damage: 40,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup déchirant"
},
effect: {
en: "Sceptile ex can't use Slashing Strike during your next turn.",
fr: "Jungko ex ne peut pas utiliser Coup déchirant lors de votre prochain tour."
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card