From cd70258a21018525e468fc3e1bbb6c82dced0b93 Mon Sep 17 00:00:00 2001 From: legop3 Date: Sat, 18 Apr 2026 19:42:12 -0400 Subject: [PATCH] goals were toooo smalls --- server/src/rewards/definitions/assignmentRoulette.js | 2 +- server/src/rewards/definitions/cameraWhiplash.js | 2 +- server/src/rewards/definitions/chatSpam.js | 2 +- server/src/rewards/definitions/darkness.js | 2 +- server/src/rewards/definitions/discordStalkerPing.js | 2 +- server/src/rewards/definitions/dockPanic.js | 2 +- server/src/rewards/definitions/ghostTypingSpam.js | 2 +- server/src/rewards/definitions/lightStrobe.js | 2 +- server/src/rewards/definitions/modeJam.js | 2 +- server/src/rewards/definitions/rogueEventSpam.js | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/server/src/rewards/definitions/assignmentRoulette.js b/server/src/rewards/definitions/assignmentRoulette.js index ca6512a7..d8f0fe54 100644 --- a/server/src/rewards/definitions/assignmentRoulette.js +++ b/server/src/rewards/definitions/assignmentRoulette.js @@ -1,7 +1,7 @@ module.exports = { id: 'assignmentRoulette', name: 'Rover Reassignment', - goal: 70, + goal: 500, async run(ctx) { const moved = ctx.rerollAssignments(); ctx.sendAlert({ diff --git a/server/src/rewards/definitions/cameraWhiplash.js b/server/src/rewards/definitions/cameraWhiplash.js index fc7d590a..4c6d73d0 100644 --- a/server/src/rewards/definitions/cameraWhiplash.js +++ b/server/src/rewards/definitions/cameraWhiplash.js @@ -4,7 +4,7 @@ const STEPS = 10; module.exports = { id: 'cameraWhiplash', name: 'Camera Wiggle', - goal: 35, + goal: 160, async run(ctx) { const rovers = ctx .listOnlineRovers() diff --git a/server/src/rewards/definitions/chatSpam.js b/server/src/rewards/definitions/chatSpam.js index f4c3be9c..c87a153f 100644 --- a/server/src/rewards/definitions/chatSpam.js +++ b/server/src/rewards/definitions/chatSpam.js @@ -7,7 +7,7 @@ function randLetter() { module.exports = { id: 'chatSpam', name: 'Chat Spam', - goal: 100, + goal: 320, async run(ctx) { const nickname = randLetter(); const messageCount = 100; diff --git a/server/src/rewards/definitions/darkness.js b/server/src/rewards/definitions/darkness.js index d82d5b2b..d7fae916 100644 --- a/server/src/rewards/definitions/darkness.js +++ b/server/src/rewards/definitions/darkness.js @@ -54,7 +54,7 @@ function startDarkness(ctx, effect) { module.exports = { id: 'darkness', name: 'Darkness', - goal: 65, + goal: 650, async run(ctx) { const entities = ctx.getHomeAssistantEntities(); const prevLights = entities.map((entity) => ({ id: entity.id, state: entity.state === 'on' ? 'on' : 'off' })); diff --git a/server/src/rewards/definitions/discordStalkerPing.js b/server/src/rewards/definitions/discordStalkerPing.js index 061a9975..12a0599c 100644 --- a/server/src/rewards/definitions/discordStalkerPing.js +++ b/server/src/rewards/definitions/discordStalkerPing.js @@ -1,7 +1,7 @@ module.exports = { id: 'discordStalkerPing', name: 'Stalker Ping', - goal: 150, + goal: 900, async run(ctx) { ctx.publishEvent({ source: 'buttonBoxReward', diff --git a/server/src/rewards/definitions/dockPanic.js b/server/src/rewards/definitions/dockPanic.js index e972678a..b6dee33e 100644 --- a/server/src/rewards/definitions/dockPanic.js +++ b/server/src/rewards/definitions/dockPanic.js @@ -3,7 +3,7 @@ const DOCK_COMMAND_BASE64 = Buffer.from([143]).toString('base64'); module.exports = { id: 'dockPanic', name: 'All Dock', - goal: 30, + goal: 180, async run(ctx) { const rovers = ctx.listOnlineRovers(); rovers.forEach((rover) => { diff --git a/server/src/rewards/definitions/ghostTypingSpam.js b/server/src/rewards/definitions/ghostTypingSpam.js index 910360ed..56ffc037 100644 --- a/server/src/rewards/definitions/ghostTypingSpam.js +++ b/server/src/rewards/definitions/ghostTypingSpam.js @@ -5,7 +5,7 @@ const TICK_MS = 180; module.exports = { id: 'ghostTypingSpam', name: 'Typing Spam', - goal: 40, + goal: 220, async run(ctx) { let tick = 0; const active = new Set(); diff --git a/server/src/rewards/definitions/lightStrobe.js b/server/src/rewards/definitions/lightStrobe.js index 129015ca..b6ef10a7 100644 --- a/server/src/rewards/definitions/lightStrobe.js +++ b/server/src/rewards/definitions/lightStrobe.js @@ -42,7 +42,7 @@ function startStrobe(ctx, effect = {}) { module.exports = { id: 'lightStrobe', name: 'Light Strobe', - goal: 55, + goal: 360, async run(ctx) { startStrobe(ctx, { endsAt: Date.now() + STROBE_MS, on: false }); ctx.sendAlert({ color: '#ffc107', title: 'Light Strobe', message: 'Room light strobe started.' }); diff --git a/server/src/rewards/definitions/modeJam.js b/server/src/rewards/definitions/modeJam.js index b7297b5e..19e86718 100644 --- a/server/src/rewards/definitions/modeJam.js +++ b/server/src/rewards/definitions/modeJam.js @@ -50,7 +50,7 @@ function scheduleRestore(ctx, effect = {}) { module.exports = { id: 'modeJam', name: 'Admin Mode', - goal: 200, + goal: 1200, async run(ctx) { const prevMode = ctx.getMode(); const prevReason = ctx.getAdminReasonText(); diff --git a/server/src/rewards/definitions/rogueEventSpam.js b/server/src/rewards/definitions/rogueEventSpam.js index af8a56c3..12f2bd29 100644 --- a/server/src/rewards/definitions/rogueEventSpam.js +++ b/server/src/rewards/definitions/rogueEventSpam.js @@ -4,7 +4,7 @@ const TITLES = ['RARARARARARARARARE', 'CHIRPET CHIRPET CHIRPET', 'meowmowmoowmom module.exports = { id: 'rogueEventSpam', name: 'Event Flood', - goal: 45, + goal: 260, async run(ctx) { for (let i = 0; i < 500; i += 1) { const color = COLORS[Math.floor(Math.random() * COLORS.length)];