ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/readable/book_read.arc
Revision: 1.8
Committed: Thu Oct 15 16:00:37 2009 UTC (14 years, 7 months ago) by sf-marcmagus
Branch: MAIN
CVS Tags: rel-2_82
Changes since 1.7: +20 -1 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.6 object book_read
2 root 1.1 name book
3 root 1.7 name_pl books
4     skill literacy
5     face book_read.x11
6 root 1.5 nrof 1
7 root 1.1 type 8
8     subtype 3
9 root 1.7 materialname paper
10 sf-marcmagus 1.8 value 50
11 root 1.1 weight 3000
12 root 1.7 client_type 1041
13 root 1.5 editable 128
14 root 1.1 end
15 root 1.7
16 sf-marcmagus 1.8 object book_empty
17     name empty book
18     name_pl empty books
19     skill literacy
20     other_arch book_read
21     face book_empty.x11
22     nrof 1
23     type 110
24     materialname paper
25     value 50
26     weight 3000
27     container 1000
28     client_type 1041
29     editable 128
30     msg
31     It is ruled to make writing in it easier.
32     endmsg
33     end
34