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

Comparing deliantra/server/include/treasure.h (file contents):
Revision 1.28 by root, Fri Mar 26 01:04:44 2010 UTC vs.
Revision 1.34 by root, Sun Jan 29 02:47:05 2017 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the Affero GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25/* 25/*
26 * defines and variables used by the artifact generation routines 26 * defines and variables used by the artifact generation routines
44/* 44/*
45 * Flags to generate_treasures(): 45 * Flags to generate_treasures():
46 */ 46 */
47enum 47enum
48{ 48{
49 GT_ENVIRONMENT = 0x0001, // put treasure at objetc, not into object 49 GT_ENVIRONMENT = 0x0001, // put treasure at object, not into object
50 GT_INVISIBLE = 0x0002, 50 GT_INVISIBLE = 0x0002,
51 GT_STARTEQUIP = 0x0004, 51 GT_STARTEQUIP = 0x0004,
52 GT_APPLY = 0x0008, 52 GT_APPLY = 0x0008,
53 GT_ONLY_GOOD = 0x0010, 53 GT_ONLY_GOOD = 0x0010,
54 GT_MINIMAL = 0x0020, // Do minimal adjustments 54 GT_MINIMAL = 0x0020, // Do minimal adjustments
57/* when a treasure got cloned from archlist, we want perhaps change some default 57/* when a treasure got cloned from archlist, we want perhaps change some default
58 * values. All values in this structure will override the default arch. 58 * values. All values in this structure will override the default arch.
59 * TODO: It is a bad way to implement this with a special structure. 59 * TODO: It is a bad way to implement this with a special structure.
60 * Because the real arch list is a at runtime not changed, we can grap for example 60 * Because the real arch list is a at runtime not changed, we can grap for example
61 * here a clone of the arch, store it in the treasure list and then run the original 61 * here a clone of the arch, store it in the treasure list and then run the original
62 * arch parser over this clone, using the treasure list as script until an END comes. 62 * arch parser over this clone, using the treasure list as script until an END comes.
63 * This will allow ANY changes which is possible and we use ony one parser. 63 * This will allow ANY changes which is possible and we use ony one parser.
64 */ 64 */
65 65
66typedef struct _change_arch 66typedef struct _change_arch
67{ 67{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines