Crossfire Server, Branch 1.12  R12190
recipe.h
Go to the documentation of this file.
00001 
00006 #ifndef RECIPE_H
00007 #define RECIPE_H
00008 
00010 typedef struct recipestruct {
00011     const char *title;          
00012     size_t arch_names;          
00013     char **arch_name;           
00014     int chance;                 
00016     int diff;                   
00017     int exp;                    
00018     int index;                  
00019     int transmute;              
00021     int yield;                  
00022     linked_char *ingred;        
00023     struct recipestruct *next;  
00024     const char *keycode;        
00025     const char *skill;          
00026     const char *cauldron;       
00027 } recipe;
00028 
00030 typedef struct recipeliststruct {
00031     int total_chance;               
00032     int number;                     
00033     struct recipestruct *items;     
00034     struct recipeliststruct *next;  
00035 } recipelist;
00036 
00037 #endif /* RECIPE_H */