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:
77
data/XY/Ancient Origins/26.ts
Normal file
77
data/XY/Ancient Origins/26.ts
Normal 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
|
Reference in New Issue
Block a user