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

78 lines
1.2 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 '../Ancient Origins'
const card: Card = {
name: {
en: "Jolteon",
fr: "Voltali",
},
illustrator: "Sanosuke Sakuma",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Electric Effect",
fr: "Effet Électrique",
},
effect: {
en: "Each of your Stage 1 Pokémon in play is now a Lightning Pokémon in addition to its existing types.",
fr: "Chacun de vos Pokémon de Niveau 1 en jeu est maintenant un Pokémon Lightning en plus de ses types existants.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Blast",
fr: "Grondement de Tonnerre",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card