maps.bankX.Map Name.Desigantion
example:
maps.bank3.Pallet Town.3-0
This system makes the branching factor more reasonable, letting you use the `maps` category without filtering if you want to.
keeping the same block editor keeps the view from disconnecting from the ViewModel every time the attributes get edited. It also lets the flip buttons remain visible when editing blocks
Don't load data.pokedex.search.alpha, it doesn't seem to work correctly and gets in the way of shiny palettes.
Set specific length for move names table. It looks like 896, but there's only 894 animations.
When running the dex reorder and the data isn't in the expected format, warn the user. But this isn't an issue with HMA, it's an issue with the data. So it should be a warning, not an assert.
You can now use branch-link like a function call. For example, instead of:
```arm
mov r0, #1
bl <thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram>
mov r0, #2
bl <thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram>
mov r0, #3
bl <thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram>
```
you can do
```arm
thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram(1)
thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram(2)
thumb.new_menu_helpers.ScheduleBgCopyTilemapToVram(3)
```
When working with hidesprite `var` instead of hidesprite `num`, the var may reference an OW that uses a hide/show flag that's never actually touched in a script. So you can't make the flag in a script first and then copy it into the map editor, it makes sense to be able to create a flag for the OW directly from within the map editor.
multiple users have gotten confused about why the flyspot event button is available sometimes, but not always. This change hopes to make that more clear.
Instead of the button only being there when it's useful, the button is always visible. However, the button is disabled (with a tooltip message) when it cannot be used.
now try to look for skipCount at every possible starting letter, storing the smallest one and returning that. This makes it correctly detect a small skipCount for search like "marine cave" on text like "maps.24-102 (Marine Cave)"