From 117bda0ee0d4787aea2111f3d3a7fe75d4f0acce Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Fri, 23 Oct 2009 22:33:30 +0200 Subject: Make Cb's Slow Biology and Time Bend available one piety breakpoint earlier. --- crawl-ref/source/abl-show.cc | 2 +- crawl-ref/source/effects.cc | 2 +- crawl-ref/source/player.cc | 6 +++--- crawl-ref/source/religion.cc | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'crawl-ref') diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc index 7ffdccc328..11dd60326f 100644 --- a/crawl-ref/source/abl-show.cc +++ b/crawl-ref/source/abl-show.cc @@ -148,7 +148,7 @@ ability_type god_abilities[MAX_NUM_GODS][MAX_GOD_ABILITIES] = { ABIL_FEAWN_SUNLIGHT, ABIL_FEAWN_PLANT_RING, ABIL_FEAWN_RAIN, ABIL_FEAWN_SPAWN_SPORES, ABIL_FEAWN_EVOLUTION }, // Cheibriados - { ABIL_NON_ABILITY, ABIL_NON_ABILITY, ABIL_CHEIBRIADOS_TIME_BEND, + { ABIL_NON_ABILITY, ABIL_CHEIBRIADOS_TIME_BEND, ABIL_NON_ABILITY, ABIL_CHEIBRIADOS_SLOUCH, ABIL_CHEIBRIADOS_TIME_STEP }, }; diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc index 347cd130ed..c6307295bc 100644 --- a/crawl-ref/source/effects.cc +++ b/crawl-ref/source/effects.cc @@ -3624,7 +3624,7 @@ void handle_time(long time_delta) // not actually do anything. if (one_chance_in(30) && !(you.religion == GOD_CHEIBRIADOS - && you.piety >= piety_breakpoint(1) + && you.piety >= piety_breakpoint(0) && coinflip())) { mpr("Your disease is taking its toll.", MSGCH_WARN); diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index e74c72aecd..148af8e8f3 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -1200,7 +1200,7 @@ int player_hunger_rate(void) // If Cheibriados has slowed your life processes, there's a // chance you'll hunger a bit less. if (GOD_CHEIBRIADOS == you.religion - && you.piety >= piety_breakpoint(1) + && you.piety >= piety_breakpoint(0) && coinflip()) hunger--; @@ -5297,7 +5297,7 @@ void dec_poison_player() // chance that your poison level is simply unaffected and // you aren't hurt by poison. if (GOD_CHEIBRIADOS == you.religion - && you.piety >= piety_breakpoint(1) + && you.piety >= piety_breakpoint(0) && coinflip()) return; @@ -5568,7 +5568,7 @@ void dec_disease_player() // If Cheibriados has slowed your life processes, there's a // chance that your disease level is unaffected. if (GOD_CHEIBRIADOS == you.religion - && you.piety >= piety_breakpoint(1) + && you.piety >= piety_breakpoint(0) && coinflip()) { return; diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc index 851826f270..9e0a8f0e59 100644 --- a/crawl-ref/source/religion.cc +++ b/crawl-ref/source/religion.cc @@ -298,9 +298,9 @@ const char* god_gain_power_messages[NUM_GODS][MAX_GOD_ABILITIES] = "induce evolution" }, // Cheibriados - { "", - "Cheibriados is slowing your biology.", + { "Cheibriados is slowing your biology.", "bend time to slow others", + "", "inflict damage to those overly hasty", "step out of the time flow" } @@ -405,9 +405,9 @@ const char* god_lose_power_messages[NUM_GODS][MAX_GOD_ABILITIES] = "induce evolution" }, // Cheibriados - { "", - "Cheibriados will no longer slow your biology.", + { "Cheibriados will no longer slow your biology.", "bend time to slow others", + "", "inflict damage to those overly hasty", "step out of the time flow" } -- cgit v1.2.3-54-g00ecf