1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00

feat: Add Pocket promo cards 74 to 92 (#829)

This commit is contained in:
adresa97
2025-07-31 10:23:41 +02:00
committed by GitHub
parent 7c2a69711e
commit dba61e87e7
19 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Jolteon",
es: "Jolteon"
},
illustrator: "Mizue",
rarity: "Three Diamond",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Eevee",
es: "Eevee"
},
description: {
en: "It concentrates the weak electric charges emitted\nby its cells and launches wicked lightning bolts.",
es: "Concentra la débil actividad eléctrica de\nsus células para lanzar dañinas descargas."
},
stage: "Stage1",
attacks: [{
name: {
en: "Beginning Bolt",
es: "Descarga de Arranque"
},
damage: 40,
cost: ["Lightning"],
effect: {
en: "If this Pokémon evolved during this turn, this attack does 20 more damage.",
es: "Si este Pokémon ha evolucionado durante este turno, este ataque hace 20 puntos de daño más."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1,
boosters: ["vol10"]
}
export default card