DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T r

⟦8bfb2dc08⟧ TextFile

    Length: 883 (0x373)
    Types: TextFile
    Names: »races.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Gb/races.h« 

TextFile

/*
 * Galactic Bloodshed (Robert Chansky, smq@b)
 */

struct race {
    float tech;		/* technology */
    float birthrate;
    float overbirthrate;
    percent fighters;
    percent IQ;
    percent number_sexes;
    float mass;
    float metabolism;
    float nonhomebodies;
    char conditions[OTHER+1];	/* planetary conditions you like */
    char homelevel,homesystem,homeplanetnum;	/* home place */
    char deflevel,defsystem,defplanetnum;	/* current default */
    int Playernum;
    char name[RNAMESIZE];
    float likes[DES_ICE];		/* what territories they like */
    char likesbest;
    percent translate[MAXPLAYERS];	/* translation mod for ea player */
    char atwar[howmanybytes(MAXPLAYERS)];	/* war */
    char allied[howmanybytes(MAXPLAYERS)];	/* allies */
    unsigned Thing : 1;			/* your race is like "The Thing" */
};

typedef struct race racetype;
racetype *Race;