summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-clouds.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-03-29 01:22:44 -0230
committerDracoOmega <draco_omega@live.com>2014-03-29 06:30:38 -0230
commit52d274e0595491b4dd965030d1effe266ec2295f (patch)
treeeedd3d7066898436695e547f2db2397485f62844 /crawl-ref/source/spl-clouds.cc
parentdd35d23968f6db5c5361f817d5043ae2e4e3808e (diff)
downloadcrawl-ref-52d274e0595491b4dd965030d1effe266ec2295f.tar.gz
crawl-ref-52d274e0595491b4dd965030d1effe266ec2295f.zip
Adjust cloud weights for Rod of Clouds
The three special cloud types unique to this rod were vanishingly rare until very high evo (impossible until 15, but a minority even at 22 skill) and since most are not even greatly stronger than 'normal' clouds, I thought it was a shame that it was so hard to see them without a level of evocations skill that very few characters would realistically get. This allows negative energy and acid clouds to show up earlier, increases their relative weight compared to normal clouds (in asecending order of general power), makes rain a bit less common and meph somewhat more common as low-tier clouds. Storm clouds (the only new cloud type that tends to be more powerful than normal clouds in absolute terms) are more strongly favored at the highest power, which seems fine given the investment that represents.
Diffstat (limited to 'crawl-ref/source/spl-clouds.cc')
-rw-r--r--crawl-ref/source/spl-clouds.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/spl-clouds.cc b/crawl-ref/source/spl-clouds.cc
index 1f80423d6e..3ccf90c527 100644
--- a/crawl-ref/source/spl-clouds.cc
+++ b/crawl-ref/source/spl-clouds.cc
@@ -501,15 +501,15 @@ void apply_control_winds(const monster* mon)
random_pick_entry<cloud_type> cloud_cone_clouds[] =
{
- { 0, 50, 100, DOWN, CLOUD_RAIN },
+ { 0, 50, 80, DOWN, CLOUD_RAIN },
{ 0, 50, 100, DOWN, CLOUD_MIST },
- { 0, 50, 100, DOWN, CLOUD_MEPHITIC },
+ { 0, 50, 150, DOWN, CLOUD_MEPHITIC },
{ 0, 100, 100, PEAK, CLOUD_FIRE },
{ 0, 100, 100, PEAK, CLOUD_COLD },
{ 0, 100, 100, PEAK, CLOUD_POISON },
- { 50, 100, 100, UP, CLOUD_ACID },
- { 50, 100, 100, UP, CLOUD_STORM },
- { 50, 100, 100, UP, CLOUD_NEGATIVE_ENERGY },
+ { 30, 100, 125, UP, CLOUD_NEGATIVE_ENERGY },
+ { 40, 100, 135, UP, CLOUD_ACID },
+ { 50, 100, 175, UP, CLOUD_STORM },
{ 0,0,0,FLAT,CLOUD_NONE }
};