1 #pragma once
2 
3 enum description_level_type
4 {
5     DESC_THE,
6     DESC_A,
7     DESC_YOUR,
8     DESC_PLAIN,
9     DESC_ITS,
10     DESC_INVENTORY_EQUIP,
11     DESC_INVENTORY,
12 
13     // Partial item names.
14     DESC_BASENAME,                     // Base name of item subtype
15     DESC_QUALNAME,                     // Name without articles, quantities,
16                                        // enchantments.
17     DESC_DBNAME,                       // Name with which to look up item
18                                        // description in the db.
19 
20     DESC_NONE
21 };
22