mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-12 00:41:58 +00:00
73
data/Sword & Shield/Fusion Strike/88.ts
Normal file
73
data/Sword & Shield/Fusion Strike/88.ts
Normal 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
|
Reference in New Issue
Block a user