Skip to content

Commit

Permalink
update to version 2.4.0.0 (#60)
Browse files Browse the repository at this point in the history
update to version 2.4.0.0
  • Loading branch information
Hamsda authored May 12, 2019
2 parents a18959d + 17f7971 commit a6cf7e1
Show file tree
Hide file tree
Showing 71 changed files with 5,681 additions and 35 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.4.0.0

- fixed MQ Spirit unintentionally showing up on child map
- added entrance randomizer variant
- added map and compass to capture layout

## 2.3.3.9

- fixed back of MQ DC with chus in logic
Expand Down
Binary file modified ootrando_overworldmap_hamsda.zip
Binary file not shown.
Binary file added ootrando_overworldmap_hamsda/images/compass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ootrando_overworldmap_hamsda/images/map.png
12 changes: 12 additions & 0 deletions ootrando_overworldmap_hamsda/items/dungeons.json
Original file line number Diff line number Diff line change
Expand Up @@ -658,5 +658,17 @@
"type": "toggle",
"img": "images/boss_key.png",
"codes": "generic_boss_key"
},
{
"name": "Generic Map",
"type": "toggle",
"img": "images/map.png",
"codes": "generic_map"
},
{
"name": "Generic Compass",
"type": "toggle",
"img": "images/compass.png",
"codes": "generic_compass"
}
]
12 changes: 6 additions & 6 deletions ootrando_overworldmap_hamsda/layouts/capture.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
[
"boomerang",
"lens",
"",
"beans",
"hammer",
"lightarrow",
"nayruslove",
Expand Down Expand Up @@ -75,13 +75,13 @@
[
"",
"",
"",
"",
"generic_map",
"generic_compass",
"generic_small_key",
"generic_boss_key",
"rupee",
"HP",
"HC",
"rupee",
"generic_small_key",
"generic_boss_key"
]
]
}
Expand Down
5 changes: 4 additions & 1 deletion ootrando_overworldmap_hamsda/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "OoT Randomizer - Map and Item Tracker",
"game_name": "Ocarina of Time Randomizer",
"package_version": "2.3.3.9",
"package_version": "2.4.0.0",
"package_uid": "ootrando_overworldmap_hamsda",
"author": "Hamsda",
"variants": {
Expand All @@ -19,6 +19,9 @@
},
"var_minimalist": {
"display_name": "Items Only (minimal)"
},
"var_entrance": {
"display_name": "Entrance Randomizer"
}
}
}
6 changes: 3 additions & 3 deletions ootrando_overworldmap_hamsda/maps/maps.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"name": "child",
"location_size": 35,
"location_border_thickness": 5,
"img": "images/oot_overworld2.png"
"img": "images/overworld_map.png"
},
{
"name": "adult",
"location_size": 35,
"location_border_thickness": 5,
"img": "images/oot_overworld2.png"
"img": "images/overworld_map.png"
},
{
"name": "gossips",
"location_size": 35,
"location_border_thickness": 5,
"img": "images/oot_overworld2.png"
"img": "images/overworld_map.png"
}
]
72 changes: 49 additions & 23 deletions ootrando_overworldmap_hamsda/scripts/init.lua
Original file line number Diff line number Diff line change
@@ -1,28 +1,54 @@
Tracker:AddItems("items/options.json")
Tracker:AddItems("items/quest.json")
Tracker:AddItems("items/equipment.json")
Tracker:AddItems("items/items.json")
Tracker:AddItems("items/dungeons.json")
Tracker:AddItems("items/sequences.json")
if Tracker.ActiveVariantUID == "var_entrance" then
Tracker:AddItems("items/options.json")
Tracker:AddItems("items/quest.json")
Tracker:AddItems("items/equipment.json")
Tracker:AddItems("items/items.json")
Tracker:AddItems("items/dungeons.json")
Tracker:AddItems("items/cap_grottos.json")
Tracker:AddItems("items/cap_houses.json")
Tracker:AddItems("items/cap_dungeons.json")
Tracker:AddItems("items/cap_overworld.json")

ScriptHost:LoadScript("scripts/logic.lua")
ScriptHost:LoadScript("scripts/update.lua")

if Tracker.ActiveVariantUID == "var_itemsonlykeysanity" then
Tracker:FindObjectForCode("setting_gerudo").CurrentStage = 0
end
Tracker:AddMaps("maps/maps.json")

ScriptHost:LoadScript("scripts/logic.lua")
ScriptHost:LoadScript("scripts/update.lua")
Tracker:AddLocations("locations/overworld.json")

Tracker:AddLayouts("layouts/item_grids.json")
Tracker:AddLayouts("layouts/options.json")
Tracker:AddLayouts("layouts/layouts.json")
Tracker:AddLayouts("layouts/tracker.json")
Tracker:AddLayouts("layouts/capture.json")
Tracker:AddLayouts("layouts/broadcast.json")
else
Tracker:AddItems("items/options.json")
Tracker:AddItems("items/quest.json")
Tracker:AddItems("items/equipment.json")
Tracker:AddItems("items/items.json")
Tracker:AddItems("items/dungeons.json")
Tracker:AddItems("items/sequences.json")

Tracker:AddMaps("maps/maps.json")
if Tracker.ActiveVariantUID == "var_itemsonlykeysanity" then
Tracker:FindObjectForCode("setting_gerudo").CurrentStage = 0
end

Tracker:AddLocations("locations/overworld.json")
Tracker:AddLocations("locations/dung_reg.json")
Tracker:AddLocations("locations/dung_reg_keys.json")
Tracker:AddLocations("locations/dung_mq.json")
Tracker:AddLocations("locations/dung_mq_keys.json")
ScriptHost:LoadScript("scripts/logic.lua")
ScriptHost:LoadScript("scripts/update.lua")

Tracker:AddLayouts("layouts/item_grids.json")
Tracker:AddLayouts("layouts/options.json")
Tracker:AddLayouts("layouts/layouts.json")
Tracker:AddLayouts("layouts/tracker.json")
Tracker:AddLayouts("layouts/capture.json")
Tracker:AddLayouts("layouts/broadcast.json")
Tracker:AddMaps("maps/maps.json")

Tracker:AddLocations("locations/overworld.json")
Tracker:AddLocations("locations/dung_reg.json")
Tracker:AddLocations("locations/dung_reg_keys.json")
Tracker:AddLocations("locations/dung_mq.json")
Tracker:AddLocations("locations/dung_mq_keys.json")

Tracker:AddLayouts("layouts/item_grids.json")
Tracker:AddLayouts("layouts/options.json")
Tracker:AddLayouts("layouts/layouts.json")
Tracker:AddLayouts("layouts/tracker.json")
Tracker:AddLayouts("layouts/capture.json")
Tracker:AddLayouts("layouts/broadcast.json")
end
68 changes: 68 additions & 0 deletions ootrando_overworldmap_hamsda/var_entrance/items/cap_dungeons.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
[
{
"name": "Deku",
"type": "toggle",
"img": "images/label_deku.png",
"codes": "entrance_dungeon_deku"
},
{
"name": "DC",
"type": "toggle",
"img": "images/label_dodongo.png",
"codes": "entrance_dungeon_dodongo"
},
{
"name": "Jabu",
"type": "toggle",
"img": "images/label_jabu.png",
"codes": "entrance_dungeon_jabu"
},
{
"name": "Forest",
"type": "toggle",
"img": "images/label_forest.png",
"codes": "entrance_dungeon_forest"
},
{
"name": "Fire",
"type": "toggle",
"img": "images/label_fire.png",
"codes": "entrance_dungeon_fire"
},
{
"name": "Water",
"type": "toggle",
"img": "images/label_water.png",
"codes": "entrance_dungeon_water"
},
{
"name": "Spirit",
"type": "toggle",
"img": "images/label_spirit.png",
"codes": "entrance_dungeon_spirit"
},
{
"name": "Shadow",
"type": "toggle",
"img": "images/label_shadow.png",
"codes": "entrance_dungeon_shadow"
},
{
"name": "Well",
"type": "toggle",
"img": "images/label_botw.png",
"codes": "entrance_dungeon_botw"
},
{
"name": "IC",
"type": "toggle",
"img": "images/label_ice.png",
"codes": "entrance_dungeon_ice"
},
{
"name": "GTG",
"type": "toggle",
"img": "images/label_gtg.png",
"codes": "entrance_dungeon_gtg"
},
]
56 changes: 56 additions & 0 deletions ootrando_overworldmap_hamsda/var_entrance/items/cap_grottos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
[
{
"name": "Cow",
"type": "toggle",
"img": "images/entrance_grotto_cow.png",
"codes": "entrance_grotto_cow"
},
{
"name": "Scrub",
"type": "toggle",
"img": "images/entrance_grotto_scrub.png",
"codes": "entrance_grotto_scrub"
},
{
"name": "Deku Theater",
"type": "toggle",
"img": "images/entrance_grotto_theater.png",
"codes": "entrance_grotto_theater"
},
{
"name": "Kakariko Bombable Grotto",
"type": "toggle",
"img": "images/entrance_grotto_kak_bomb.png",
"codes": "entrance_grotto_kak_bomb"
},
{
"name": "Front of Meadow Grotto",
"type": "toggle",
"img": "images/entrance_grotto_wolfos.png",
"codes": "entrance_grotto_wolfos"
},
{
"name": "Castle Storms Grotto",
"type": "toggle",
"img": "images/entrance_grotto_castle_storms.png",
"codes": "entrance_grotto_castle_storms"
},
{
"name": "Field Kakariko Grotto",
"type": "toggle",
"img": "images/entrance_grotto_field_kak.png",
"codes": "entrance_grotto_field_kak"
},
{
"name": "Field North Lon Lon Grotto",
"type": "toggle",
"img": "images/entrance_grotto_tektite.png",
"codes": "entrance_grotto_tektite"
},
{
"name": "Field Valley Grotto",
"type": "toggle",
"img": "images/entrance_grotto_field_valley.png",
"codes": "entrance_grotto_field_valley"
},
]
Loading

0 comments on commit a6cf7e1

Please sign in to comment.