(lndchr): Document that members l_gun and l_shell are unused.

(lchr_ca): Remove selectors g_build and s_build.  Update land.config.
This commit is contained in:
Markus Armbruster 2006-02-19 18:30:13 +00:00
parent c9f530846e
commit 53a564d474
3 changed files with 25 additions and 27 deletions

View file

@ -104,8 +104,8 @@ struct lchrstr {
int l_lcm; /* units of lcm to build */ int l_lcm; /* units of lcm to build */
int l_hcm; /* units of hcm to build */ int l_hcm; /* units of hcm to build */
int l_mil; /* how many mil it takes to build */ int l_mil; /* how many mil it takes to build */
int l_gun; /* how many guns it takes to build */ int l_gun; /* how many guns it takes to build (unused) */
int l_shell; /* how many shells it takes to build */ int l_shell; /* #shells it takes to build (unused) */
int l_tech; /* tech required to build */ int l_tech; /* tech required to build */
int l_cost; /* how much it costs to build */ int l_cost; /* how much it costs to build */
float l_att; /* attack multiplier */ float l_att; /* attack multiplier */

View file

@ -40,29 +40,29 @@
# document them all. # document them all.
config land-chr config land-chr
type name l_b h_b g_b s_b tech cost ... type name l_b h_b tech cost ...
0 "cav cavalry" 10 5 0 0 30 500 0 "cav cavalry" 10 5 30 500
1 "linf light infantry" 8 4 0 0 40 300 1 "linf light infantry" 8 4 40 300
2 "inf infantry" 10 5 0 0 50 500 2 "inf infantry" 10 5 50 500
3 "mtif motor inf" 15 10 0 0 190 400 3 "mtif motor inf" 15 10 190 400
4 "mif mech inf" 15 10 0 0 190 800 4 "mif mech inf" 15 10 190 800
5 "mar marines" 10 5 0 0 140 1000 5 "mar marines" 10 5 140 1000
6 "sup supply" 10 5 0 0 50 500 6 "sup supply" 10 5 50 500
7 "tra train" 100 50 0 0 40 3500 7 "tra train" 100 50 40 3500
8 "spy infiltrator" 10 5 0 0 40 750 8 "spy infiltrator" 10 5 40 750
9 "com commando" 10 5 0 0 55 1500 9 "com commando" 10 5 55 1500
10 "aau aa unit" 20 10 0 0 70 500 10 "aau aa unit" 20 10 70 500
11 "art artillery" 20 10 0 0 35 800 11 "art artillery" 20 10 35 800
12 "lat lt artillery" 20 10 0 0 70 500 12 "lat lt artillery" 20 10 70 500
13 "hat hvy artillery" 40 20 0 0 100 800 13 "hat hvy artillery" 40 20 100 800
14 "mat mech artillery" 20 10 0 0 200 1000 14 "mat mech artillery" 20 10 200 1000
15 "eng engineer" 10 5 0 0 130 3000 15 "eng engineer" 10 5 130 3000
16 "meng mech engineer" 10 5 0 0 260 4500 16 "meng mech engineer" 10 5 260 4500
17 "lar lt armor" 10 5 0 0 150 600 17 "lar lt armor" 10 5 150 600
18 "har hvy armor" 20 10 0 0 120 500 18 "har hvy armor" 20 10 120 500
19 "arm armor" 20 10 0 0 170 1000 19 "arm armor" 20 10 170 1000
20 "sec security" 10 5 0 0 170 600 20 "sec security" 10 5 170 600
21 "rad radar unit" 10 5 0 0 270 1000 21 "rad radar unit" 10 5 270 1000
/config /config
config land-chr config land-chr

View file

@ -356,8 +356,6 @@ struct castr lchr_ca[] = {
NSC_IVEC(offsetof(struct lchrstr, l_item), ""), NSC_IVEC(offsetof(struct lchrstr, l_item), ""),
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_lcm), "l_build", EF_BAD}, {NSC_INT, 0, 0, offsetof(struct lchrstr, l_lcm), "l_build", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_hcm), "h_build", EF_BAD}, {NSC_INT, 0, 0, offsetof(struct lchrstr, l_hcm), "h_build", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_gun), "g_build", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_shell), "s_build", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_tech), "tech", EF_BAD}, {NSC_INT, 0, 0, offsetof(struct lchrstr, l_tech), "tech", EF_BAD},
{NSC_INT, 0, 0, offsetof(struct lchrstr, l_cost), "cost", EF_BAD}, {NSC_INT, 0, 0, offsetof(struct lchrstr, l_cost), "cost", EF_BAD},
{NSC_FLOAT, 0, 0, offsetof(struct lchrstr, l_att), "att", EF_BAD}, {NSC_FLOAT, 0, 0, offsetof(struct lchrstr, l_att), "att", EF_BAD},