1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Gym Challenge'
const card: Card = {
name: {
en: "Lt. Surge's Jolteon",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "High Voltage",
},
effect: {
en: "Flip a coin. If heads, your opponent can't play Trainer cards during his or her next turn.",
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Thunder Flare",
},
effect: {
en: "Does 30 damage plus 10 damage times the number of damage counters on Lt. Surge's Jolteon, then flip a coin. If tails, Lt. Surge's Jolteon does 30 damage to itself.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card