1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

62 lines
870 B
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 '../Delta Species'
const card: Card = {
name: {
en: "Holon's Electrode",
fr: "Electrode d'Holon",
de: "Holon-Lektrobal"
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
101,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Holon's Voltorb",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Dazzle Blast",
fr: "Explosion de lumière",
de: "Blendende Explosion"
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
de: "Das Verteidigende Pokémon ist jetzt verwirrt."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card