import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Galvantula", fr: "Mygavolt", es: "Galvantula", it: "Galvantula", pt: "Galvantula", de: "Voltula" }, illustrator: "Akira Komayama", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 596, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Joltik", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Quick Turn", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Electrisilk", }, effect: { en: "If the Defending Pokémon has no Retreat Cost, this attack does 40 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1 } export default card