ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/artifact.h
Revision: 1.3
Committed: Sat Sep 16 22:06:17 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1
Changes since 1.2: +15 -14 lines
Log Message:
indent

File Contents

# Content
1 struct artifact
2 {
3 object *item;
4 uint16 chance;
5 uint8 difficulty;
6 artifact *next;
7 linked_char *allowed;
8 };
9
10 struct artifactlist
11 {
12 uint8 type; /* Object type that this list represents */
13 uint16 total_chance; /* sum of chance for are artifacts on this list */
14 artifactlist *next;
15 artifact *items;
16 };