1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

44 lines
690 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Electabuzz"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
en: "Many power plants keep Ground-type Pokémon around as a defense against Electabuzz that come seeking electricity."
},
stage: "Basic",
attacks: [{
name: {
en: "Thunder Spear"
},
cost: ["Lightning", "Lightning"],
effect: {
en: "This attack does 40 damage to 1 of your opponent's Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1,
rarity: "Two Diamond"
}
export default card