mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
73
data/Sword & Shield/Fusion Strike/97.ts
Normal file
73
data/Sword & Shield/Fusion Strike/97.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Eelektross",
|
||||
fr: "Ohmassacre",
|
||||
es: "Eelektross",
|
||||
it: "Eelektross",
|
||||
pt: "Eelektross",
|
||||
de: "Zapplarang"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eelektrik",
|
||||
fr: "Lampéroie",
|
||||
es: "Eelektrik",
|
||||
it: "Eelektrik",
|
||||
pt: "Eelektrik",
|
||||
de: "Zapplalek"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
retreat: 3,
|
||||
regulationMark: "E",
|
||||
illustrator: "OKACHEKE",
|
||||
|
||||
description: {
|
||||
en: "They crawl out of the ocean using their arms. They will attack prey on shore and immediately drag it into the ocean."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Upper Shock"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon evolved from Eelektrik during this turn, your opponent's Active Pokémon is now Paralyzed."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wild Charge"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 30 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user