import { Card } from '../../../interfaces' import Set from '../Noble Victories' const card: Card = { name: { en: "Golett", fr: "Gringolem", es: "Golett", it: "Golett", pt: "Golett", de: "Golbit" }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 622, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Dynamic Punch", fr: "Dynamopoing", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage and the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Confus.", }, damage: 20, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 3, } export default card