1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

79 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 '../Team Rocket'
const card: Card = {
name: {
en: "Dark Jolteon",
fr: "Voltali obscur"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 50,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Lightning Flash",
fr: "Flash éclair"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie d'attaquer pendant le prochain tour de votre adversaire, votre adversaire doit lancer une pièce. Si c'est pile, cette attaque ne fait rien."
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder Attack",
fr: "Attaque tonnerre"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, Dark Jolteon does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé. Si c'est pile, Voltali obscur s'inflige 10 dégâts."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "Très dangereux quand il se met en colère, il aime s'amuser à électrocuter les gens avec l'électricité qu'il stocke dans son corps."
}
}
export default card