import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Helioptile", fr: "Galvaran", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 694, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Quick Attack", fr: "Vive-Attaque", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 10, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Static Shock", fr: "Choc Statique", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card