1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

49 lines
843 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
dexId: [125],
set: Set,
name: {
en: "Electabuzz"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
description: {
en: "Normally found near power plants, it can wander away and cause major blackouts in cities."
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
en: "Thundershock"
},
damage: 10,
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed."
}
}, {
cost: ["Lightning", "Colorless"],
name: {
en: "Thunderpunch"
},
damage: "30+",
effect: {
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage; if tails, the attack does 30 damage and Electabuzz does 10 damage to itself."
}
}]
}
export default card