mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
83 lines
1.1 KiB
TypeScript
83 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Electivire",
|
||
fr: "Élekable",
|
||
es: "Electivire",
|
||
it: "Electivire",
|
||
pt: "Electivire",
|
||
de: "Elevoltek"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
466,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Electabuzz",
|
||
fr: "Élektek",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Knuckle Punch",
|
||
fr: "Coud’Phalange",
|
||
es: "Puño con Nudillos",
|
||
it: "Nocca-Pugno",
|
||
pt: "Soco com Punho",
|
||
de: "Knöchelhieb"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Electroslug",
|
||
fr: "Électro Frappe",
|
||
es: "Electropuñetazo",
|
||
it: "Elettropugno",
|
||
pt: "Lesma Elétrica",
|
||
de: "Elektroschuss"
|
||
},
|
||
|
||
damage: 90,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|