1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

74 lines
1.1 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Jolteon",
fr: "Voltali",
},
illustrator: "Uta",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 100,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Speed Cheer",
fr: "Bravos Fulgurants",
},
effect: {
en: "The attacks of your Pokémon-GX in play that evolve from Eevee cost Colorless less. You can't apply more than 1 Speed Cheer Ability at a time.",
fr: "Les attaques de vos Pokémon-GX en jeu qui évoluent dÉvoli coûtent Colorless de moins. Vous ne pouvez pas utiliser plus dun talent Bravos Fulgurants à la fois.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Head Bolt",
fr: "Éclair Frontal",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card