1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 00:41:58 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Electrode",
fr: "Électrode",
es: "Electrode",
it: "Electrode",
pt: "Electrode",
de: "Lektrobal"
},
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
evolveFrom: {
en: "Voltorb",
fr: "Voltorbe",
es: "Voltorb",
it: "Voltorb",
pt: "Voltorb",
de: "Voltobal"
},
stage: "Stage1",
retreat: 1,
regulationMark: "E",
illustrator: "Kouki Saitou",
description: {
en: "It stores an overflowing amount of electric energy inside its body. Even a small shock makes it explode."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Sonic Boom"
},
damage: 40,
effect: {
en: "This attack's damage isn't affected by Weakness or Resistance."
}
}, {
cost: ["Colorless"],
name: {
en: "Explosion"
},
damage: 120,
effect: {
en: "This Pokémon also does 90 damage to itself."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card