1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

83 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "CoudPhalange",
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