ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/random/randomRead.arc
Revision: 1.8
Committed: Thu Oct 15 16:00:37 2009 UTC (14 years, 8 months ago) by sf-marcmagus
Branch: MAIN
CVS Tags: rel-2_82
Changes since 1.7: +20 -0 lines
Log Message:
Add inscribable arches for other book types.
Use 'container'/weight_limit to define capacity of inscribables in characters.
Add treasures/arches to specify books with/without text.
Scorn and Navar Public Libraries use these so they don't generate inscribables.
Fix bug allowing theft of blank books from libraries.
Fix bug preventing adding an adjective to a book name if the titles are used up.
Change error message on reading empty book to be more clear.
Change error message on failed inscription [too much text] to be more informative.
Looking at an inscribable will tell you what you can do with it/what its capacity is in a hint.
Fix broken debug statements in book generation.

File Contents

# User Rev Content
1 root 1.5 object random_reading
2 pippijn 1.2 face randomRead.x11
3 root 1.6 hp 1
4 root 1.4 type 4
5 root 1.1 randomitems random_read
6     auto_apply 1
7     editable 4
8     magicmap orange
9     end
10 root 1.6
11 sf-marcmagus 1.8 object random_reading_text
12     face randomRead.x11
13     hp 1
14     type 4
15     randomitems random_read_text
16     auto_apply 1
17     editable 4
18     magicmap orange
19     end
20    
21     object random_reading_empty
22     face randomRead.x11
23     hp 1
24     type 4
25     randomitems random_read_empty
26     auto_apply 1
27     editable 4
28     magicmap orange
29     end
30