1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.2 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 '../Supreme Victors'
const card: Card = {
name: {
en: "Electivire FB",
fr: "Elekable ",
},
illustrator: "Hironobu Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
466,
],
hp: 90,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dump and Draw",
fr: "Jeter et piocher",
},
effect: {
en: "Discard up to 2 Energy cards from your hand. For each card you discarded, draw 2 cards.",
fr: "Défaussez jusqu'à 2 cartes Énergie de votre main. Pour chaque carte défaussée, piochez 2 cartes.",
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Electric Current",
fr: "Courant électrique",
},
effect: {
en: "Move a Lightning Energy card attached to Electivire FB to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie Lightning attachée à Elekable sur 1 de vos Pokémon de Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card