summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-18 14:49:26 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-18 14:49:26 +0000
commitbf8f76369f3779b4bd48ab9a1f09bc06a6f0ea7a (patch)
tree90f58136a193c533a19761521cb099cec060fde5
parent42ccbd877e87fa75915d5f25cb6626e632035848 (diff)
downloadcrawl-ref-bf8f76369f3779b4bd48ab9a1f09bc06a6f0ea7a.tar.gz
crawl-ref-bf8f76369f3779b4bd48ab9a1f09bc06a6f0ea7a.zip
r115@xenon: dshaligram | 2006-09-18 20:20:13 +051800
* Fixed egregiously high damage output from monster poison arrow. * Fixed Sif Muna piety decay rate - it was still too fast for sustainable piety gains. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@47 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mstuff2.cc2
-rw-r--r--crawl-ref/source/religion.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index f514ab8ddd..d4460a0697 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -1314,7 +1314,7 @@ bolt mons_spells( int spell_cast, int power )
case MS_POISON_ARROW:
strcpy( beam.beam_name, "poison arrow" );
- beam.damage = dice_def( 4, 5 + power / 4 );
+ beam.damage = dice_def( 4, 5 + power / 12 );
beam.colour = LIGHTGREEN;
beam.type = SYM_MISSILE;
beam.thrower = KILL_MON;
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 94cef35207..964840f972 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2691,9 +2691,9 @@ void handle_god_time(void)
case GOD_SIF_MUNA:
// [dshaligram] Sif Muna is now very patient - has to be
- // to make up with the new spell training requirements, else
+ // to make up for the new spell training requirements, else
// it's practically impossible to get Master of Arcane status.
- if (one_chance_in(45))
+ if (one_chance_in(60))
lose_piety(1);
if (you.piety < 1)
excommunication();