mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
99 lines
2.0 KiB
TypeScript
99 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Eelektross",
|
||
fr: "Ohmassacre",
|
||
es: "Eelektross",
|
||
it: "Eelektross",
|
||
pt: "Eelektross",
|
||
de: "Zapplarang"
|
||
},
|
||
illustrator: "Shigenori Negishi",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
604,
|
||
],
|
||
hp: 150,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Eelektrik",
|
||
fr: "Lampéroie",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Electric Swamp",
|
||
fr: "Marais Électrique",
|
||
es: "Pantano Eléctrico",
|
||
it: "Stagno Elettrico",
|
||
pt: "Pântano Elétrico",
|
||
de: "Elektrosumpf"
|
||
},
|
||
effect: {
|
||
en: "Play this Pokémon onto your Bench.",
|
||
fr: "Jouez ce Pokémon sur votre Banc.",
|
||
es: "Pon este Pokémon en tu Banca.",
|
||
it: "Metti questo Pokémon nella tua panchina.",
|
||
pt: "Coloque este Pokémon no seu Banco.",
|
||
de: "Lege dieses Pokémon auf deine Bank."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hover Over",
|
||
fr: "Flotter",
|
||
es: "Planear por Encima",
|
||
it: "Volteggiare",
|
||
pt: "Flutuar Acima",
|
||
de: "Belauern"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon can’t retreat during your opponent’s next turn.",
|
||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
|
||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
|
||
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
|
||
},
|
||
damage: 130,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|