1/* Definitions of the advance type properties in Xconq GDL.
2   Copyright (C) 1998, 1999 Hans Ronne.
3   Copyright (C) 2004 Eric A. McDonald.
4
5Xconq is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 2, or (at your option)
8any later version.  See the file COPYING.  */
9
10DEF_APROP_L("ai-next-goal", a_ai_next_goal,
11	    "list of possible next research goals for AI to choose",
12	    ainextgoal)
13
14DEF_APROP_S("help", a_help,
15	"brief description of this advance",
16	help, "")
17
18DEF_APROP_S("image-name", a_image_name,
19	"graphical representation of this advance",
20	imagename, "")
21
22DEF_APROP_S("name", a_type_name,
23	"name of this advance",
24	name, "")
25
26DEF_APROP_L("notes", a_notes,
27	"player notes",
28	notes)
29
30DEF_APROP_I("rp", a_rp,
31	"number of research points to discover a new advance",
32	rp, 1, 1, PROPHI)
33
34