summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-23 22:33:30 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-23 22:33:30 +0200
commit117bda0ee0d4787aea2111f3d3a7fe75d4f0acce (patch)
treee209c8a4f76d1fdd27b39761b744905ecc5081c3 /crawl-ref/source
parent315853b7738d84350ade652d7b7ab6686a62fadd (diff)
downloadcrawl-ref-117bda0ee0d4787aea2111f3d3a7fe75d4f0acce.tar.gz
crawl-ref-117bda0ee0d4787aea2111f3d3a7fe75d4f0acce.zip
Make Cb's Slow Biology and Time Bend available one piety breakpoint earlier.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/abl-show.cc2
-rw-r--r--crawl-ref/source/effects.cc2
-rw-r--r--crawl-ref/source/player.cc6
-rw-r--r--crawl-ref/source/religion.cc8
4 files changed, 9 insertions, 9 deletions
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"
}