Difference between revisions of "Item Generation"
From DoomRL Wiki
(994 item level/weight table update) |
(994 updated total weight table) |
||
Line 368: | Line 368: | ||
For convenience, here are the total weights for each dlevel. These allow easier calculation of the probabilities. | For convenience, here are the total weights for each dlevel. These allow easier calculation of the probabilities. | ||
{| | {| | ||
+ | |- | ||
|'''dlevel''' | |'''dlevel''' | ||
|'''Total Weight''' | |'''Total Weight''' | ||
|- | |- | ||
|1 | |1 | ||
− | | | + | |3592 |
+ | |- | ||
+ | |2 | ||
+ | |4641 | ||
|- | |- | ||
− | | | + | |3 |
− | | | + | |4701 |
|- | |- | ||
|4 | |4 | ||
− | | | + | |5493 |
|- | |- | ||
|5 | |5 | ||
− | | | + | |7646 |
|- | |- | ||
|6 | |6 | ||
− | | | + | |8228 |
|- | |- | ||
|7 | |7 | ||
− | | | + | |9196 |
|- | |- | ||
|8 | |8 | ||
− | | | + | |9412 |
|- | |- | ||
|9 | |9 | ||
− | | | + | |9420 |
|- | |- | ||
|10 | |10 | ||
− | | | + | |9542 |
|- | |- | ||
|11 | |11 | ||
− | | | + | |9622 |
|- | |- | ||
|12-13 | |12-13 | ||
− | | | + | |9717 |
|- | |- | ||
|14 | |14 | ||
− | | | + | |9720 |
|- | |- | ||
|15 | |15 | ||
− | | | + | |9739 |
|- | |- | ||
|16-19 | |16-19 | ||
− | | | + | |9800 |
|- | |- | ||
|20-21 | |20-21 | ||
− | | | + | |9803 |
|- | |- | ||
|22+ | |22+ | ||
− | | | + | |9805 |
|} | |} | ||
The number of items that appear on a level is usually ceil(21 - max(25-dlevel,0)/3). The items are chosen at random using the weights as relative probabilities. At most 1 unique item can drop per level. | The number of items that appear on a level is usually ceil(21 - max(25-dlevel,0)/3). The items are chosen at random using the weights as relative probabilities. At most 1 unique item can drop per level. |
Revision as of 21:03, 15 September 2011
Technical | |
This article discusses technical aspects of DoomRL and will be of limited interest to most players. |
Note that this section only describes items that are dropped explicitly; in addition many monsters also carry items (usually guns and ammo). Also, some special level features (e.g. vaults) can cause additional items to drop beyond what is described here.
Item placement is similar to monster placement. Every item has a minimum dlevel and a weight. Here are the levels and weights for all the items:
|
|
|
Ignoring minimum dlevel, the total weight for exotic items is 132. Unique items a total weight (again ignoring minimum dlevel) of 43. Any particular unique item will never drop more than once in each game. Minimum dlevels for items are NOT modified by difficulty level.
For convenience, here are the total weights for each dlevel. These allow easier calculation of the probabilities.
dlevel | Total Weight |
1 | 3592 |
2 | 4641 |
3 | 4701 |
4 | 5493 |
5 | 7646 |
6 | 8228 |
7 | 9196 |
8 | 9412 |
9 | 9420 |
10 | 9542 |
11 | 9622 |
12-13 | 9717 |
14 | 9720 |
15 | 9739 |
16-19 | 9800 |
20-21 | 9803 |
22+ | 9805 |
The number of items that appear on a level is usually ceil(21 - max(25-dlevel,0)/3). The items are chosen at random using the weights as relative probabilities. At most 1 unique item can drop per level.