[ ] Every recipe in the game is not yet known to the program
[ ] Of the recipes I have, most don't have any data.
The first problem is just because I still haven't beaten the game and don't know all the recipes. Just add more entries to the Recipe enum in recipes.rs.
The second problem is because it just takes FOREVER to write everything in (especially when DSP runs at 9fps). Add entries to generator.rs, in RecipeEntry::generate_all().
There are two linked problems here:
The first problem is just because I still haven't beaten the game and don't know all the recipes. Just add more entries to the
Recipe
enum inrecipes.rs
.The second problem is because it just takes FOREVER to write everything in (especially when DSP runs at 9fps). Add entries to
generator.rs
, inRecipeEntry::generate_all()
.