chiisu81 wrote: ↑Wed Aug 26, 2020 8:16 am
Changing everything needed to match the Style Guide would take too much work (ie things like bolding magic items, un-capitalizing regular weapons and armor, bolding and un-capitalizing spell names, etc.),
Eh, don't rule it out. You'd be amazed what I can do with vim if I feel like it.
chiisu81 wrote: ↑Wed Aug 26, 2020 8:16 am
Adventurer.py
- line 48: change "CHR" to "CHA"
Coins.py
- lines 40-44: change "CP", "SP", etc. to "cp", "sp", etc.
Treasure.py
- lines w/ "CP", "SP", etc. need to be changed to "cp", "sp", etc.
All of the above have been fixed.
chiisu81 wrote: ↑Wed Aug 26, 2020 8:16 am
Monsters.py
- I notice the first 11 monsters have an "xp" line/value; does one of us (ie likely me) just need to supply you (Solo) an updated file that has XP values for the rest of them?
MonstersFG1.py
- It looks like each entry has a blank "name" line (and all but the first indented too far right); like above, does one of us (ie likely me) just need to supply you (Solo) an updated file that has those "name" values typed in?
- In addition to above, is anything else needed for this file in order for it to be used by the dungeon room generator (ie if you were intending a checkbox w/ "Check to include Field Guide 1 monster" or such)?
Stocker.py
- Monsters need xp values (likely due to Monsters.py note above)
- comma needs to be added for 4-digit values
- "ea." needs to be added when there's > 1 monster
- HP checkboxes
- don't need "HP" after the first line
I stopped putting in xp fields when I realized I didn't need them... this was before the Style Guide, when I didn't include XP in adventures. And yes, fixing the data omissions from Monsters and MonstersFG1 could be that simple; easier yet, if you are familiar with git, to clone the repo, make the changes, and then do a pull request.
Stocker.py needs a bit more work to get the things you've mentioned fixed. Literally, the code needs to be gone over and improved. It's all Python 2 code, which should at some point be made over as Python 3 (but it's not a priority right now).