Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor additions #10

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/maps/rocktunnel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion items/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
"img": "images/items/fossilcheck.png",
"codes": "opt_fossilcheck",
"max_quantity": 3,
"initial_quantity": 0
"initial_quantity": 0,
"overlay_background": "#000000"

},
{
Expand Down
12 changes: 10 additions & 2 deletions layouts/tracker.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
{
"tracker_default": {
"type": "container",
"background": "#111111",
Expand Down Expand Up @@ -58,11 +58,19 @@
"tabs": [
{
"title": "Kanto",
"icon": "images/map.png",
"icon": "images/maps/map.png",
"content": {
"type": "map",
"maps": ["map"]
}
},
{
"title": "Rock Tunnel",
"icon": "images/maps/rocktunnel.png",
"content": {
"type": "map",
"maps": ["rocktunnel"]
}
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion locations/locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@
},
{
"name": "Fossil",
"access_rules": ["$pewter,$rt3"],
"access_rules": ["$pewter,$rt3","$cerulean,$surf"],
"sections": [
{
"name": "Fossil A",
Expand Down
174 changes: 174 additions & 0 deletions locations/submaps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
[
{
"name": "Dungeons",
"chest_unopened_img": "images/items/pokeball.png",
"chest_opened_img": "images/items/pokeball_gray.png",
"children": [
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 1"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 375,
"y": 130
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 2"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 120,
"y": 84
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 3"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 90,
"y": 260
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 4"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 278,
"y": 243
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 5"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 600,
"y": 340
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 6"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 522,
"y": 387
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/1F Trainer 7"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 360,
"y": 390
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/B1F Southwest Item"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 680,
"y": 480
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/B1F West Item"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 680,
"y": 390
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/B1F Northwest Item"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 680,
"y": 340
}
]
},
{
"name": "",
"sections": [
{
"ref": "World/Rock Tunnel/B1F North Item"
}
],
"map_locations": [
{
"map": "rocktunnel",
"x": 1010,
"y": 40
}
]
}
]
}
]
8 changes: 7 additions & 1 deletion maps/maps.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@
"location_size": 20,
"location_border_thickness": 2,
"img": "images/maps/map.png"
}
},
{
"name": "rocktunnel",
"location_size": 20,
"location_border_thickness": 2,
"img": "images/maps/rocktunnel.png"
}
]
Loading