summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-12 18:35:19 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-12 18:35:19 +0000
commit5f92d00d2f5b4973ab846e1f068ec1460e2eb9d5 (patch)
tree5508af670d1d4d9b22aad4f4776db364a00a9052
parent22338b7685432f3fecc1b57118bcd18f98a46c2d (diff)
downloadcrawl-ref-5f92d00d2f5b4973ab846e1f068ec1460e2eb9d5.tar.gz
crawl-ref-5f92d00d2f5b4973ab846e1f068ec1460e2eb9d5.zip
Make some of the new uniques appear earlier.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9759 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/docs/changes.stone_soup4
-rw-r--r--crawl-ref/source/dungeon.cc14
-rw-r--r--crawl-ref/source/view.cc1
3 files changed, 9 insertions, 10 deletions
diff --git a/crawl-ref/docs/changes.stone_soup b/crawl-ref/docs/changes.stone_soup
index 54eb55e977..230475e2cc 100644
--- a/crawl-ref/docs/changes.stone_soup
+++ b/crawl-ref/docs/changes.stone_soup
@@ -20,7 +20,7 @@ Breaks saves compatibility.
Levels
------
-* New portal vaults (Sewer, Ice Cave, Minitomb), and many new vaults.
+* New portal vaults (Sewer, Ice Cave, Minitomb, Ziggurat), and many new vaults.
* Self-changing labyrinths (mappable but subject to map rot).
* Teleporting within a labyrinth always sends you away from the exit.
* The Orcish Mines are now completely interconnected via the branch bottom.
@@ -87,7 +87,7 @@ Interface
---------
* New command for evoking inventory items ('V'), replaces wand zapping ('Z').
* Casting spells with 'z' aborts without prompt if no monsters are in range.
-* Casting spells with 'z?' or the new 'Z' allows casting in any case.
+* Casting spells with the new 'Z' allows casting in any case.
* Changed quick save command to 'Ctrl-S' (was Ctrl-X).
* Change exclusion commands to e, E, Ctrl-E (was Ctrl-X, x, Ctrl-E).
* New monster/item view command ('Ctrl-X'), allowing travel to items, features.
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 49e3cc1fd5..2a3f54e0c4 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3252,7 +3252,7 @@ static monster_type _choose_unique_by_depth(int step)
break;
case 1: // depth <= 7
ret = random_choose(MONS_IJYB, MONS_SIGMUND, MONS_BLORK_THE_ORC,
- MONS_EDMUND, -1);
+ MONS_EDMUND, MONS_PRINCE_RIBBIT, -1);
break;
case 2: // depth <= 9
ret = random_choose(MONS_BLORK_THE_ORC, MONS_EDMUND, MONS_PSYCHE,
@@ -3260,27 +3260,27 @@ static monster_type _choose_unique_by_depth(int step)
break;
case 3: // depth <= 13
ret = random_choose(MONS_PSYCHE, MONS_EROLCHA, MONS_DONALD, MONS_URUG,
- MONS_MICHAEL, MONS_PRINCE_RIBBIT, -1);
+ MONS_MICHAEL, MONS_EUSTACHIO, MONS_SONJA, -1);
break;
case 4: // depth <= 16
ret = random_choose(MONS_URUG, MONS_MICHAEL, MONS_JOSEPH, MONS_SNORG,
MONS_ERICA, MONS_JOSEPHINE, MONS_HAROLD,
- MONS_NORBERT, MONS_JOZEF, MONS_AZRAEL,
- MONS_EUSTACHIO, MONS_SONJA, MONS_NESSOS, -1);
+ MONS_NORBERT, MONS_JOZEF, MONS_EUSTACHIO,
+ MONS_SONJA, MONS_AZRAEL, MONS_NESSOS, -1);
break;
case 5: // depth <= 19
ret = random_choose(MONS_SNORG, MONS_ERICA, MONS_JOSEPHINE,
MONS_HAROLD, MONS_NORBERT, MONS_JOZEF, MONS_AGNES,
MONS_MAUD, MONS_LOUISE, MONS_FRANCIS, MONS_FRANCES,
- MONS_AZRAEL, MONS_EUSTACHIO, MONS_NERGALLE,
- MONS_SONJA, MONS_NESSOS, -1);
+ MONS_AZRAEL, MONS_NESSOS, MONS_NERGALLE,
+ MONS_ROXANNE, MONS_SAINT_ROKA, -1);
break;
case 6: // depth > 19
default:
ret = random_choose(MONS_LOUISE, MONS_FRANCIS, MONS_FRANCES,
MONS_RUPERT, MONS_WAYNE, MONS_DUANE, MONS_XTAHUA,
MONS_NORRIS, MONS_FREDERICK, MONS_MARGERY,
- MONS_BORIS, MONS_ROXANNE, MONS_NERGALLE,
+ MONS_BORIS, MONS_NERGALLE, MONS_ROXANNE,
MONS_SAINT_ROKA, -1);
}
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 482fb298ff..91077e12df 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -5363,7 +5363,6 @@ void viewwindow(bool draw_it, bool do_updates)
{
buffy[bufcount + 1] = DARKGREY;
#ifdef USE_TILE
-// tileb[bufcount + 1] |= TILE_FLAG_UNSEEN;
if (see_grid(gc))
tileb[bufcount + 1] |= TILE_FLAG_OOR;
#endif