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

80 lines
1.5 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Electrode",
fr: "Electrode",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Voltorb",
fr: "Voltorbe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Flash",
fr: "Flash",
},
effect: {
en: "If the Defending Pokemon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaye d'attaquer lors du prochain tour de votre adversaire, celui-ci lance une pièce. Si c'est pile, cette attaque est sans effet.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Electro Diffusion",
fr: "Électro-diffusion",
},
effect: {
en: "Does 40 damage plus 10 more damage for each Lightning Energy attached to Electrode. Flip a coin. If tails, discard all Lightning Energy attached to Electrode.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Lightning attachée à Electrode. Lancez une pièce. Si c'est pile, défaussez toutes les Énergies Lightning attachées à Electrode.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card