mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
48
data/E-Card/Best of game/1.ts
Normal file
48
data/E-Card/Best of game/1.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Best of game'
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user