summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-22 18:43:00 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-22 20:36:05 +0100
commitc652cbec1739a628f87aedc4874c782429f8d7ce (patch)
tree181fa692ff6cd5e22bc2f49faa44f8a07c7ed027 /crawl-ref/source/output.cc
parent1b497b95a98e15058beba1a4304f7dfd9832930b (diff)
downloadcrawl-ref-c652cbec1739a628f87aedc4874c782429f8d7ce.tar.gz
crawl-ref-c652cbec1739a628f87aedc4874c782429f8d7ce.zip
Remove hard skill pool cutoff.
There's now a soft cutoff at player::exp_pool_cutoff() that scales with you.total_skill_points. Above that, you.exp_available is stepped down. It currently starts at ~800 skill points for a new character. A human melee fighter (weapon skill 27, fighting 15, traps 8, armour 15, invo 12) gets around 18000 points (skill level 21). The cutoff is not currently limited. Side-effects are a nerf to the experience card -- it could easily be changed to still give the usual 20000 points.
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index c833723649..667820f90e 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -848,9 +848,10 @@ static bool _need_stats_printed()
static short _get_exp_pool_colour(int pool)
{
- if (pool < MAX_EXP_POOL/2)
+ int cutoff = you.exp_pool_cutoff();
+ if (pool < cutoff*3/4)
return (HUD_VALUE_COLOUR);
- else if (pool < MAX_EXP_POOL*3/4)
+ else if (pool < cutoff)
return (YELLOW);
else
return (RED);