version 1.6 | | version 1.7 |
---|
| | |
/* 'recipe' and 'recipelist' are used by the alchemy code */ | | /* 'recipe' and 'recipelist' are used by the alchemy code */ |
typedef struct recipestruct { | | typedef struct recipestruct { |
const char *title; /* distinguishing name of product */ | | const char *title; /* distinguishing name of product */ |
const char *arch_name; /* the archetype of the final product made */ | | size_t arch_names; /* the size of the arch_name[] array */ |
| | char **arch_name; /* the possible archetypes of the final product made */ |
int chance; /* chance that recipe for this item will appear | | int chance; /* chance that recipe for this item will appear |
* in an alchemical grimore */ | | * in an alchemical grimore */ |
int diff; /* alchemical dfficulty level */ | | int diff; /* alchemical dfficulty level */ |