ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/material.h
(Generate patch)

Comparing deliantra/server/include/material.h (file contents):
Revision 1.1 by root, Fri Feb 3 07:12:49 2006 UTC vs.
Revision 1.2 by elmex, Sun Aug 13 17:16:02 2006 UTC

1/* 1/*
2 * static char *rcsid_material_h = 2 * static char *rcsid_material_h =
3 * "$Id: material.h,v 1.1 2006/02/03 07:12:49 root Exp $"; 3 * "$Id: material.h,v 1.2 2006/08/13 17:16:02 elmex Exp $";
4 */ 4 */
5 5
6/* 6/*
7 CrossFire, A Multiplayer game for X-windows 7 CrossFire, A Multiplayer game for X-windows
8 8
46#define M_BONE 2048 46#define M_BONE 2048
47#define M_ICE 4096 47#define M_ICE 4096
48#define M_SPECIAL 8192 /* when displaying names, don't show the 48#define M_SPECIAL 8192 /* when displaying names, don't show the
49 materialname */ 49 materialname */
50 50
51typedef struct _materialtype { 51struct materialtype_t {
52 const char *name; 52 const char *name;
53 const char *description; 53 const char *description;
54 int material; 54 int material;
55 sint8 save[NROFATTACKS]; 55 sint8 save[NROFATTACKS];
56 sint8 mod[NROFATTACKS]; 56 sint8 mod[NROFATTACKS];
61 sint8 wc; 61 sint8 wc;
62 sint8 ac; 62 sint8 ac;
63 sint8 sp; 63 sint8 sp;
64 int weight; 64 int weight;
65 int value; 65 int value;
66 struct _materialtype *next; 66 struct materialtype_t *next;
67} materialtype_t; 67};
68 68
69EXTERN materialtype_t *materialt; 69extern materialtype_t *materialt;
70 70
71#endif /* MATERIAL_H_1 */ 71#endif /* MATERIAL_H_1 */
72 72

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines