import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Heliolisk", fr: "Iguolta", }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 695, ], hp: 100, types: [ "Lightning", ], evolveFrom: { en: "Helioptile", fr: "Galvaran", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Random Spark", fr: "Étincelle Surprise", }, effect: { en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Volt Switch", fr: "Change Éclair", }, effect: { en: "Switch this Pokémon with 1 of your Benched Lightning Pokémon.", fr: "Échangez ce Pokémon avec l’un de vos Pokémon Lightning de Banc.", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card