mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
69
data/Sword & Shield/Fusion Strike/96.ts
Normal file
69
data/Sword & Shield/Fusion Strike/96.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Eelektrik",
|
||||
fr: "Lampéroie",
|
||||
es: "Eelektrik",
|
||||
it: "Eelektrik",
|
||||
pt: "Eelektrik",
|
||||
de: "Zapplalek"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tynamo",
|
||||
fr: "Anchwatt",
|
||||
es: "Tynamo",
|
||||
it: "Tynamo",
|
||||
pt: "Tynamo",
|
||||
de: "Zapplardin"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "Shigenori Negishi",
|
||||
|
||||
description: {
|
||||
en: "These Pokémon have a big appetite. When they spot their prey, they attack it and paralyze it with electricity."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Lightning Ball"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Thunder"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user