1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +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

49 lines
788 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Galvantula"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
evolveFrom: {
en: "Joltik"
},
description: {
en: "It launches electrified fur from its abdomen as its means of attack. Opponents hit by the fur could be in for three full days and nights of paralysis."
},
stage: "Stage1",
attacks: [{
name: {
en: "Electroweb"
},
damage: 70,
cost: ["Lightning", "Lightning"],
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1,
rarity: "Two Diamond"
}
export default card