1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/074.ts

48 lines
717 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Jolteon"
},
illustrator: "Nisota Niso",
rarity: "One Star",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Eevee"
},
description: {
en: "It concentrates the weak electric charges emitted\nby its cells and launches wicked lightning bolts."
},
stage: "Stage1",
attacks: [{
name: {
en: "Beginning Bolt"
},
damage: 40,
cost: ["Lightning"],
effect: {
en: "If this Pokémon evolved during this turn, this attack does 20 more damage."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card