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

76 lines
1.4 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 '../Rising Rivals'
const card: Card = {
name: {
en: "Electrode G",
fr: "Electrode Niv. 38",
},
illustrator: "Yusuke Ishikawa",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
suffix: "SP",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Reckless Bomb",
fr: "Bombe imprudente",
},
effect: {
en: "This attack does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Electrode does 100 damage to itself.",
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc). Electrode s'inflige 100 dégâts.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Reflect Energy",
fr: "Renvoi d'énergie",
},
effect: {
en: "Move an Energy card attached to Electrode to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie attachée à Electrode sur 1 des Pokémon de votre Banc.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card