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

70 lines
1.0 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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Electrode",
fr: "Électrode",
},
illustrator: "HiRON",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Voltorb",
fr: "Voltorbe",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Magnetic Draw",
fr: "Pioche Magnétique",
},
effect: {
en: "Once during your turn (before your attack), you may draw cards until you have 4 cards in your hand.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher des cartes jusqu'à ce que vous ayez 4 cartes en main.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Electro Ball",
fr: "Boule Élek",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card