Added customizer ability to change GT cutscene gfx

This commit is contained in:
codemann8
2025-08-25 11:21:44 -05:00
parent 8372a8a9bf
commit c3d6c96e79
5 changed files with 150 additions and 2 deletions

View File

@@ -347,4 +347,28 @@ prices:
Dark Death Mountain Shop - Middle: 150
Dark Death Mountain Shop - Right: 300
Dark Lake Hylia Shop - Left: 200
```
```
### gt_entry
This must be defined by player. This is where you are able to customize aspects of GT entry
#### cutscene_gfx
This is where you can define custom GFX to be used in the GT entry cutscene. For convenience, there are a number of pre-defined names that can be used to indicate already known GFX values built into the ROM. There are too many to list, but a full list can be found in `item_gfx_table` in `Tables.py`. You can also use `Random` and it will take a random one from the aforementioned table.
```
gt_entry:
1:
cutscene_gfx: Mirror Shield
```
Alternatively, you may also supply a custom address and palette ID, respectively, if you are injecting your own personal custom GFX into the ROM.
```
gt_entry:
1:
cutscene_gfx:
- 0x8140
- 0x04
```