A small Python GUI application that displays available buffs (and debuffs) for the Monster Hunter Freedom Unite (MHFU) kitchen system.
MHFU Kitchen Helper helps hunters plan their pre-hunt meals by calculating and displaying the effects of different ingredient combinations based on the number of Felyne Chefs in their kitchen.
- Python: >= 3.13
- Package Manager: uv (recommended) or
pip
- Clone the repository:
git clone https://github.com/your-username/MHFU_Kitechen_Helper.git cd MHFU_Kitechen_Helper - Install dependencies:
uv sync
To start the application:
uv run app.pyOr if using standard Python:
python app.pyThe project includes a build.py script to create a standalone executable using PyInstaller.
Make sure you have PyInstaller installed:
uv sync --devThe app depends on Tkinter being installed, even though the build process will not being impacted, you will be unable to launch the app if the Tkinter modules are not installed.
Tkinter is not disitributed via PyPi, it has to be installed separately, see the docs.
To build the application:
uv run build.pyOr if using standard Python:
python app.pyThis will create a dist/MHFUKitchenHelper executable. The build includes the lang/ directory resources.
As 1.2.0 patch, only the english language is supported, but it's actually easy to add new languages to the app,
just add a new JSON file to the with the translated string into the lang directory, and the app will automaticly load it.
Feel free to contribute by adding your language to the app !