1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,77 @@
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: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card