Skip to content

Commit

Permalink
small tweaks; version push, bofa tile tweak, CCSC in bones recs
Browse files Browse the repository at this point in the history
  • Loading branch information
docrostov committed Aug 13, 2024
1 parent 676d237 commit 4c42cfd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Source/relay/TourGuide/Items of the Month/2023/Book of Facts.ash
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,24 @@ void IOTMBookofFactsGenerateTasks(ChecklistEntry [int] task_entries, ChecklistEn

// If they have an eagle, remind them they can eagle-banish to make it easier to find the habitat guys
string eagleString = lookupFamiliar("Patriotic Eagle").familiar_is_usable() ? "; remember, you can phylum-banish with your Patriotic Eagle to make it easier!" : "." ;
phylum eaglePhylumBanished = $phylum[none];

if (get_property("banishedPhyla") != "")
eaglePhylumBanished = get_property("banishedPhyla").split_string(":")[1].to_phylum();

if (habitat_monster != $monster[none] && fights_left > 0)
{
description.listAppend("Neaaaar, faaaaaaar, wherever you spaaaaaaar, I believe that the heart does go onnnnn.");
description.listAppend("Appears as a wandering monster in any zone. Try a place with few competing monsters"+eagleString);

if (eaglePhylumBanished == habitat_monster.phylum) {
description.listAppend(HTMLGenerateSpanFont(`WARNING: {habitat_monster}'s phylum is banished!`, "red"));
}
if (habitat_monster.is_banished()) {
description.listAppend(HTMLGenerateSpanFont(`WARNING: {habitat_monster} is banished!`, "red"));
}
optional_task_entries.listAppend(ChecklistEntryMake("__monster " + habitat_monster, "", ChecklistSubentryMake("Fight " + pluralise(fights_left, "more non-native " + habitat_monster, "more non-native " + habitat_monster + "s"), "", description), -4));
}
Expand Down
2 changes: 2 additions & 0 deletions Source/relay/TourGuide/Quests/Level 13.ash
Original file line number Diff line number Diff line change
Expand Up @@ -1134,6 +1134,8 @@ void QLevel13GenerateTasks(ChecklistEntry [int] task_entries, ChecklistEntry [in
}
if (my_mp() < $skill[saucegeyser].mp_cost() * 4.0)
subentry.entries.listAppend(HTMLGenerateSpanFont("Restore some MP first.", "red"));
if (__iotms_usable[lookupItem("candy cane sword cane")])
subentry.entries.listAppend("Also, consider using your Candy Cane Sword Cane's surprisingly sweet slash to cut the wall's HP by 75%!");
if (need_modifier_output)
{
subentry.modifiers.listAppend("mysticality");
Expand Down
2 changes: 1 addition & 1 deletion Source/relay/TourGuide/Settings.ash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//These settings are for development. Don't worry about editing them.
string __version = "2.2.1"; // pushed to 2.2.1 on jill/leaves tiles
string __version = "2.2.2"; // pushed to 2.2.1 on jill/leaves tiles

//Path and name of the .js file. In case you change either.
string __javascript = "TourGuide/TourGuide.js";
Expand Down

0 comments on commit 4c42cfd

Please sign in to comment.