Skip to content

Commit d11859e

Browse files
authored
Update TODO.md
Change Item_Flag to be a string to support hex values
1 parent 5694785 commit d11859e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

worlds/pokemon_platinum/TODO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"tag": "ITEM_LOCATION_DESC",
66
"long_description": "Location - Item by Pond",
77
"location": "LOCATION_ROUTE",
8-
"item_flag": 0,
8+
"item_flag": "0",
99
"vanilla_item": 1
1010
}
1111
```
1212
- Full list of all hidden items and what flag triggers them (hidden_items.json)
13-
```json
13+
```json
1414
{
1515
"tag": "HIDDEN_ITEM_LOCATION_DESC",
1616
"long_description":"Location - Hidden Item near Stairs",
1717
"location": "LOCATION_ROUTE",
18-
"item_flag": 0,
18+
"item_flag": "0",
1919
"vanilla_item": 1
2020
}
21-
```
21+
```
2222
- Full list of locations and where they connect to (connections.json)
2323
- Please treat each and every map change as a connection for now. We may optimize this later to group them into access sections instead of just marking every connection for generation speed. I prefer full accuracy first, optimize later.
2424
```json
@@ -74,4 +74,4 @@
7474
- Support randomization of types
7575
## AP World
7676
- Practically everything. What's here is basically a clone of the Pokemon Emerald AP world with changed names. A bunch of the logic requires the JSON files being ready to go.
77-
- BizHawk needs to be able to deal with the Dynamic loading of the save file and other content. This is done by doing a pointer trick to get the start of the save file. See the test.lua script, this does it to find the player name/money on every load since this changes every load if the time is not locked.
77+
- BizHawk needs to be able to deal with the Dynamic loading of the save file and other content. This is done by doing a pointer trick to get the start of the save file. See the test.lua script, this does it to find the player name/money on every load since this changes every load if the time is not locked.

0 commit comments

Comments
 (0)