From f4a12027234060ab547539e7c5cf36be59559163 Mon Sep 17 00:00:00 2001 From: uthuluc <58225812+uthuluc@users.noreply.github.com> Date: Thu, 16 May 2024 20:29:22 -0400 Subject: [PATCH] Update Apriling band helmet --- .../2024/Apriling band helmet | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/Source/relay/TourGuide/Items of the Month/2024/Apriling band helmet b/Source/relay/TourGuide/Items of the Month/2024/Apriling band helmet index 55e4b72c..785e65aa 100644 --- a/Source/relay/TourGuide/Items of the Month/2024/Apriling band helmet +++ b/Source/relay/TourGuide/Items of the Month/2024/Apriling band helmet @@ -17,9 +17,22 @@ void IOTMAprilingBandHelmetGenerateResource(ChecklistEntry [int] resource_entrie if (aprilingBandConductorTimer <= total_turns_played()) { description.listAppend(HTMLGenerateSpanFont("You can change your tune!", "blue")); - description.listAppend("-10% Combat Frequency"); - description.listAppend("+10% Combat Frequency"); - description.listAppend("+25% booze, +50% food, +100% candy"); + + if ($effect[Apriling Band Patrol Beat].have_effect() > 0) { + description.listAppend(HTMLGenerateSpanFont("-10% Combat Frequency", "blue")); + description.listAppend("+10% Combat Frequency"); + description.listAppend("+25% booze, +50% food, +100% candy"); + } + if ($effect[Apriling Band Battle Cadence].have_effect() > 0) { + description.listAppend("-10% Combat Frequency"); + description.listAppend(HTMLGenerateSpanFont("+10% Combat Frequency", "blue")); + description.listAppend("+25% booze, +50% food, +100% candy"); + } + if ($effect[Apriling Band Celebration Bop].have_effect() > 0) { + description.listAppend("+10% Combat Frequency"); + description.listAppend("-10% Combat Frequency"); + description.listAppend(HTMLGenerateSpanFont("+25% booze, +50% food, +100% candy", "blue")); + } } else { description.listAppend((aprilingBandConductorTimer - total_turns_played()) + " adventures until you can change your tune.");