KrisCris / Palworld-Pal-Editor

Palworld Pal Editor, the tool for Adding, Deleting, and Modifying Pals (and unlocking Viewing Cage for multiplayer) for Palworld Game Save, supports running on Docker, GUI, WebUI, and Cli.
https://www.nexusmods.com/palworld/mods/995
GNU General Public License v3.0
106 stars 11 forks source link

Modifying pal species does not update MaxFullStomach #19

Closed stayli117 closed 2 months ago

stayli117 commented 2 months ago

Penguin -> CatVampire

hope 150 -> 350

However 150 -> 150

KrisCris commented 2 months ago

Well, I hope Palworld devs could fix it by themselves - just like what they did to the MaxHP.

Unless someone makes a pull request, fetching and adding those values to the datasheet is a PITA.

KrisCris commented 2 months ago

Alternatively, I enabled interactive cli for both GUI and Web mode. (v0.6.0+)

You can try editing Pal's MaxFullStomach manually:

pal = get_pal("your pal's id")
pal.MaxFullStomach = 350.0
stayli117 commented 2 months ago

Thank you. Please enable this feature in the GUI, or tell me which file I need to configure these values in.

KrisCris commented 2 months ago

Just type in the terminal.

You can see the pal's ID on the GUI.

Then in the terminal, run the code above

stayli117 commented 2 months ago

get!Thanks