1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39: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,73 @@
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: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card