mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* fix: Add the two first sets Signed-off-by: Avior <github@avior.me> * fix: Add DP, DP Black Star and Mysterious Treasures Signed-off-by: Avior <github@avior.me>
86 lines
1.6 KiB
TypeScript
86 lines
1.6 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"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Il se laisse porter par les vents lorsque son corps est gonflé d'électricité à en éclater."
|
|
}
|
|
}
|
|
|
|
export default card
|