1(game-module "conquest"
2  (title "SFB Conquest")
3  (version "1.0")
4
5
6
7  (blurb "Territorial control.")
8  (base-module "battles")
9
10  (variants
11     (sequential true)
12     (world-seen true)
13     (see-all false)
14
15("Khan Map" khan-map
16	    "Play on the map for The Wrath of Khan." false
17	    (true
18		 (include "t-khan")
19
20		)
21	    (false
22		  (include "t-battles")
23		)
24        )
25
26;; KHAN MAP
27
28("New Ships" builders
29	    "Research Stations are equipped with construction bays to create new starships." false
30	    (true
31		 (add constructbay start-with 1)
32
33		)
34	    (false
35		)
36        )
37
38;; BUILDERS
39
40("Fast Construction" extra
41	    "Construction bays produce at double the rate." false
42	    (true
43		(table base-production
44			(damagecontrol repair 5)
45			(damdamagecontrol repair 3)
46			(kodamagecontrol repair 2)
47
48		;;	(ship-types si 5)
49
50			(fedcpc online 0)
51
52			(oberth online 2)
53
54			(constructbay construction 20)
55		)
56
57
58		)
59	    (false
60		)
61        )
62
63;; EXTRA
64
65("Facility and Colonizer Test" faccol
66	    "True: Fac-only.  False: fac and col for hulls" true
67	    (true
68		(add all-systems-types facility true)
69		(set ai-badtask-max-retries 5)
70		(set ai-badtask-remove-chance 100)
71		(add constructbay minimal-sea-for-docks 0)
72
73
74		)
75	    (false
76		(add all-systems-types facility true)
77		(add hull-types colonizer true)
78
79		)
80        )
81
82;; FACCOL
83
84
85)
86)
87
88(set sides-min 2)
89(set sides-max 4)
90
91(side 1 fed
92  (name "The Federation") (noun "Human") (adjective "Federation") (class "federation")
93  (emblem-name "spec-blank")
94)
95
96(side 2 emp
97  (name "The Terran Empire") (noun "Barbarian") (adjective "Imperial") (class "empire")
98  (emblem-name "spec-blank")
99)
100
101(side 3 tra
102  (name "The Traitors") (noun "Traitor") (adjective "Mutinous") (class "traitor")
103  (emblem-name "spec-blank")
104)
105
106(side 4 kha
107  (name "Khan") (noun "Eugenicist") (adjective "Eugenic") (class "khan")
108  (emblem-name "spec-blank")
109)
110
111(table independent-density
112  (victorypoint (deepspace nebula) (150 150))
113)
114
115;;  (add u* start-with 0)
116  (add victorypoint start-with 1)
117  (set country-separation-min 20)
118
119;; (scorekeeper
120;;   (title "Test Baby")
121;;   (when (after-turn 5))
122;;   (do (if (>= (sum-uprop victorypoint point-value) 15) win))
123;; )
124
125;; (set scorefile-name "Test Baby")
126
127
128