summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/elf.des
Commit message (Collapse)AuthorAgeFilesLines
* Un-hyphenate ogre-mage, for consistency with other mage types.David Lawrence Ramsey2009-11-061-1/+1
|
* Reduce the threat in Elf arrival vaults as per FR#2854879. They were too ↵Eino Keskitalo2009-10-151-41/+43
| | | | | | powerful, blocking off the branch instead of warning about the threat. Might still be, so playtesting and feedback is welcome. Signed-off-by: Eino Keskitalo <evktalo@users.sourceforge.net>
* Make walls in the cloud arrival vaults rock instead of stone.evktalo2009-08-241-26/+26
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10602 c06c8d41-db1a-0410-9941-cceddc491573
* Add minor cosmetic fixes.dolorous2009-06-061-1/+0
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9903 c06c8d41-db1a-0410-9941-cceddc491573
* Added a huge number of vaults, all made by Lemuel and using fog generators.dploog2009-06-051-0/+49
| | | | | | | | ice_spiral_2 complains when created via &L but seems to work fine otherwise. The new Swamp end may need revision. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9896 c06c8d41-db1a-0410-9941-cceddc491573
* General vault improvement (Eino):dploog2008-12-111-187/+168
| | | | | | | | | | | * remove obsolete mention of padding ORIENT:east etc vaults in level_design.txt * remove some of such paddings from vaults * some other general cleanup of vault files * slight changes to some vaults * two new vaults (gargoyle_guard in float.des, rats_and_rats_again in mini.des) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7811 c06c8d41-db1a-0410-9941-cceddc491573
* Separate CHANCE and WEIGHT. CHANCE is a probability, WEIGHT is a raw number ↵dshaligram2008-11-191-3/+3
| | | | | | used as a generation weight (i.e. WEIGHT is what the old CHANCE used to be). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7501 c06c8d41-db1a-0410-9941-cceddc491573
* Added Shiori's Elf and Orc vaults.dploog2008-08-181-1/+75
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6833 c06c8d41-db1a-0410-9941-cceddc491573
* Fix new Elf:7 map.dploog2008-05-071-2/+2
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4908 c06c8d41-db1a-0410-9941-cceddc491573
* Updated vaults (thanks Eino!)dploog2008-03-081-105/+38
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3540 c06c8d41-db1a-0410-9941-cceddc491573
* Added many vaults, mainly by Eino and Lemuel.dploog2008-03-071-2/+207
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3535 c06c8d41-db1a-0410-9941-cceddc491573
* Map and help cleanup (dpeg).dshaligram2008-02-021-5/+18
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3384 c06c8d41-db1a-0410-9941-cceddc491573
* Fixed maps broken by KFEAT changes in trunk.dshaligram2007-12-161-0/+11
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3076 c06c8d41-db1a-0410-9941-cceddc491573
* [1836185] Fixed Elf:7 map that substituted away its sparkling fountain.dshaligram2007-11-281-5/+5
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2921 c06c8d41-db1a-0410-9941-cceddc491573
* Changed vaults (dploog).j-p-e-g2007-10-281-518/+0
| | | | git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2639 c06c8d41-db1a-0410-9941-cceddc491573
* This change moves the logic for when a level or branch prohibitszelgadis2007-09-191-10/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | teleport control from the C++ code into the vault .des files. This is done with the additions of two things: * Changeable, persistent per-level and per-branch flags which affect game play. * Dungeon events for the killing of monsters, picking up of objects and changing of features. The current level and branch flags are for teleport control prevention, making a level unmappable (like the Abyss or a Labyrinth), and preventing magic mapping from working (like the Abyss or a Labyrinth). Some related changes: * The new .des header KMASK allows for dungeon grid masks like no_monster_gen to be applied to specific symbols rather than the entire vault. * If the wizard mapping command (&{) is used in a place which is unmappable, it will ask if you wish to force the area to be mappable (so you can see what an entire Labyrinth or Abyss level looks like without having to hack the source). * A new wizard-mode level-map command, 'T', will teleport the player to wherever the cursor is pointing. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2146 c06c8d41-db1a-0410-9941-cceddc491573
* Added elf arrival vaults (Eino).dshaligram2007-07-191-0/+86
| | | | | | | | | | | | | Tweaked dungeon builder so you always land on { on level 1 of a branch (using a map marker to identify which stair was a {). Maps with the "uniq" tag will be used only once in a game. Maps with a "uniq_foo" tag will be used only once, and will also prevent any other maps tagged "uniq_foo" from being used thereafter. Breaks saves. Oklob plants should not receive stab brands, fixed. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1897 c06c8d41-db1a-0410-9941-cceddc491573
* Manual update (David).dshaligram2007-07-031-10/+18
| | | | | | | | | | | Added javelins and sling bullets. Only Urug gets javelins at the moment. No monster gets sling bullets, but they can be randomly generated. Added deep elf blademasters and master archers to provide Silence-users some entertainment on Elf:7. I've adjusted the non-rogue-layout Elf:7s to use blademasters. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1732 c06c8d41-db1a-0410-9941-cceddc491573
* Level updates collated by David.dshaligram2007-07-011-0/+620
Fixed DEPTH: not being read correctly, added more map validation. Increased attack speed of ice statues. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1704 c06c8d41-db1a-0410-9941-cceddc491573