From d550998fa809783f599a317b9e9c8cbe9e2fb9a1 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 26 Sep 2007 19:43:53 +0000 Subject: Adjusted piety costs for Beogh smiting and Okawaru Haste (cbus/syllogism). Reduced monster spawn ramp-up in Vestibule. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2217 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/abl-show.cc | 4 ++-- crawl-ref/source/message.cc | 3 ++- crawl-ref/source/monplace.cc | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc index 11f454d2db..14cea56b73 100644 --- a/crawl-ref/source/abl-show.cc +++ b/crawl-ref/source/abl-show.cc @@ -259,7 +259,7 @@ static const ability_def Ability_List[] = // Okawaru { ABIL_OKAWARU_MIGHT, "Might", 2, 0, 50, 1, ABFLAG_NONE }, - { ABIL_OKAWARU_HASTE, "Haste", 5, 0, 100, 3, ABFLAG_NONE }, + { ABIL_OKAWARU_HASTE, "Haste", 5, 0, 100, 5, ABFLAG_NONE }, // Makhleb { ABIL_MAKHLEB_MINOR_DESTRUCTION, "Minor Destruction", 1, 0, 20, 0, ABFLAG_NONE }, @@ -302,7 +302,7 @@ static const ability_def Ability_List[] = { ABIL_NEMELEX_STACK_DECK, "Stack Deck", 5, 0, 150, 6, ABFLAG_NONE }, // Beogh - { ABIL_BEOGH_SMITING, "Smiting", 3, 0, 80, 4, ABFLAG_NONE }, + { ABIL_BEOGH_SMITING, "Smiting", 3, 0, 80, 3, ABFLAG_NONE }, { ABIL_BEOGH_RECALL_ORCISH_FOLLOWERS, "Recall Orcish Followers", 2, 0, 50, 0, ABFLAG_NONE }, // These six are unused "evil" god abilities: diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc index c0de62fb22..eb6507c68e 100644 --- a/crawl-ref/source/message.cc +++ b/crawl-ref/source/message.cc @@ -489,7 +489,8 @@ static void mpr_check_patterns(const std::string& message, && channel != MSGCH_TALK && channel != MSGCH_TALK_VISUAL && channel != MSGCH_SOUND) { - interrupt_activity( AI_MESSAGE, channel_to_str(channel) + ":" + message ); + interrupt_activity( AI_MESSAGE, + channel_to_str(channel) + ":" + message ); } // Check messages for all forms of running now. diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc index 536ffb52cb..1fda259b92 100644 --- a/crawl-ref/source/monplace.cc +++ b/crawl-ref/source/monplace.cc @@ -156,14 +156,14 @@ static int fuzz_mons_level(int level) static void hell_spawn_random_monsters() { - const int speedup_turn = 1339; + const int speedup_turn = 3000; // Monster generation in the Vestibule starts ratcheting up quickly // after speedup_turn turns spent in the Vestibule. int genodds = (you.char_direction == GDT_DESCENDING) ? 240 : 8; if (env.turns_on_level > speedup_turn) { - genodds -= (env.turns_on_level - speedup_turn) / 12; + genodds -= (env.turns_on_level - speedup_turn) / 14; if (genodds < 3) genodds = 3; } -- cgit v1.2.3-54-g00ecf