1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.0 KiB
TypeScript

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