-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add empty monotype (Salty) model & dynamic recipe view
- Loading branch information
1 parent
c5eea0a
commit 8cce374
Showing
3 changed files
with
289 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,253 @@ | ||
#pragma once | ||
|
||
#include <vector> | ||
#include <string> | ||
|
||
struct RecipeItems { | ||
std::string name; | ||
int quantity; | ||
}; | ||
|
||
struct RecipeBonus { | ||
std::string name; | ||
int level; | ||
}; | ||
|
||
struct Recipe { | ||
std::vector<RecipeItems> items; | ||
std::vector<RecipeBonus> bonuses; | ||
}; | ||
|
||
Recipe Normal = { | ||
{ | ||
{"Tofu", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Fire = { | ||
{ | ||
{"Red Pepper", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Water = { | ||
{ | ||
{"Cucumber", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Electric = { | ||
{ | ||
{"Yellow Pepper", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Grass = { | ||
{ | ||
{"Lettuce", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Ice = { | ||
{ | ||
{"Klawf Stick", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Fighting = { | ||
{ | ||
{"Pickle", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Poison = { | ||
{ | ||
{"Green Pepper", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Ground = { | ||
{ | ||
{"Ham", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Flying = { | ||
{ | ||
{"Prosciutto", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Psychic = { | ||
{ | ||
{"Onion", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Bug = { | ||
{ | ||
{"Cherry Tomato", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Rock = { | ||
{ | ||
{"Bacon", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Ghost = { | ||
{ | ||
{"Red Onion", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Dragon = { | ||
{ | ||
{"Avocado", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Dark = { | ||
{ | ||
{"Smoked Fillet", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Steel = { | ||
{ | ||
{"Hamburger", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; | ||
|
||
Recipe Fairy = { | ||
{ | ||
{"Tomato", 1}, | ||
{"Salty Herba Mystica", 1}, | ||
{"Sweet Herba Mystica", 1} | ||
}, | ||
{ | ||
{"Sparkling Power", 3}, | ||
{"Title Power", 3}, | ||
{"Encounter Power", 3} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters