(dchr_ca, packing, empfile): Add packing symbol table.

(sect_ca, ship_ca, land_ca, plague_stages, empfile):
Add plague stages symbol table.

(treaty_ca, loan_ca, agreement_statuses, empfile):
Add agreement status symbol table.
Combine treatystatuses (TS_FREE, TS_SIGNED and TS_PENDING)
and loan statuses (LS_FREE, LS_SIGNED and LS_PENDING)
into a single agreement status.

(pchr_ca, level, empfile): Add packing symbol table.
This commit is contained in:
Ron Koenderink 2005-11-13 12:27:02 +00:00
parent 733f747a36
commit 555de3100c
7 changed files with 72 additions and 14 deletions

View file

@ -137,7 +137,11 @@ struct empfile {
#define EF_RETREAT_FLAGS 35
#define EF_NATION_FLAGS 36
#define EF_NATION_RELATIONS 37
#define EF_MAX 38
#define EF_LEVEL 38
#define EF_AGREEMENT_STATUS 39
#define EF_PLAGUE_STAGES 40
#define EF_PACKING 41
#define EF_MAX 42
#define EF_IS_GAME_STATE(type) (EF_SECTOR <= (type) && (type) <= EF_LOST)