Skip to content

Commit

Permalink
Update Apriling band helmet
Browse files Browse the repository at this point in the history
  • Loading branch information
uthuluc committed May 17, 2024
1 parent 9598c9c commit f4a1202
Showing 1 changed file with 16 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down

0 comments on commit f4a1202

Please sign in to comment.