import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Joltik", fr: "Statitik", }, illustrator: "TOKIYA", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 595, ], hp: 30, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Night March", fr: "Marche Nocturne", }, effect: { en: "This attack does 20 damage times the number of Pokémon in your discard pile that have the Night March attack.", fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de Pokémon dans votre pile de défausse possédant l’attaque Marche Nocturne.", }, damage: "20×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card