-
Notifications
You must be signed in to change notification settings - Fork 17
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
Revamp the Navigator #76
Merged
Merged
Changes from 17 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
7cede6c
Make navigator translatable
Hugman76 b398a25
Split navigator menus into game categories
Hugman76 2b7247e
Remove unused stuff
Hugman76 fa15035
Fix lang files
Hugman76 3eaa1a4
Make all games with random configs use quick entries
Hugman76 4a08558
Fix #74 and #78
Hugman76 e9b6e85
Fix #77
Hugman76 d6c2ec3
Murder Mystery quick portal
Hugman76 dd30c6b
Creative Party quick portal (unused though)
Hugman76 7203e5c
Add missing party games in random config and move some out
Hugman76 6a00165
Add custom right click messages and misc category
Hugman76 679b228
Add right clicking to loopdeloop
Hugman76 82d5f3a
Remove unused fields and add Creative Party to misc category
Hugman76 6e3af65
Fix #51
Hugman76 2c8903a
Move farmy feud
Hugman76 2443205
Update color swap entry
Hugman76 a561eb2
Update main menu layout
Hugman76 33c92a0
Update data/nucleoid/lang/en_us.json
Hugman76 78e1179
Update data/nucleoid/game_portals/loopdeloop/flappy/root.json
Hugman76 436dd4e
Update en_us.json
Hugman76 76c8c65
Fix #81
Hugman76 6da5fee
Make Dé à Coudre maps selectable
Hugman76 0ce475a
Add cursed games to the navigator
Hugman76 4ab5ffb
Make Death Run maps randomizable
Hugman76 a4fede0
Make Siege maps selectable
Hugman76 6f5b24c
Let The Towers define game portals
Hugman76 86c657f
Update data/nucleoid/game_portals/top_level/categories/party.json
Hugman76 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:anvil_drop/random" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:ascension/random" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
data/nucleoid/game_portals/beacon_breakers/keep_inventory/random.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:beacon_breakers/random_keep_inventory" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"type": "nucleoid_extras:styled/advanced_menu", | ||
"name": { | ||
"translate": "gameType.beaconbreakers.beacon_breakers" | ||
}, | ||
"icon": "minecraft:beacon", | ||
"entries": [ | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:beaconbreakers/standard/root", | ||
"quick_portal": "nucleoid:beaconbreakers/standard/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
}, | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:beaconbreakers/keep_inventory/root", | ||
"quick_portal": "nucleoid:beaconbreakers/keep_inventory/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
}, | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:beaconbreakers/tiny/root", | ||
"quick_portal": "nucleoid:beaconbreakers/tiny/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
} | ||
] | ||
} |
4 changes: 4 additions & 0 deletions
4
data/nucleoid/game_portals/beacon_breakers/standard/random.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:beacon_breakers/random" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:beacon_breakers/random_tiny" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:bedwars/random_eight_teams" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:bedwars/random_four_teams" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"type": "nucleoid_extras:styled/advanced_menu", | ||
"name": { | ||
"translate": "gameType.bedwars.bed_wars" | ||
}, | ||
"icon": "minecraft:red_bed", | ||
"entries": [ | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:bedwars/two_teams/root", | ||
"quick_portal": "nucleoid:bedwars/two_teams/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
}, | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:bedwars/four_teams/root", | ||
"quick_portal": "nucleoid:bedwars/four_teams/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
}, | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:bedwars/eight_teams/root", | ||
"quick_portal": "nucleoid:bedwars/eight_teams/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:bedwars/random_two_teams" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "blocklobbers:construction_block_lobbers" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:bow_battle/random" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"type": "plasmid:on_demand", | ||
"icon": "minecraft:coal_block", | ||
"game": "cabinfever:standard_cabin_fever", | ||
"name": { | ||
"translate": "gameType.cabinfever.cabin_fever" | ||
} | ||
} | ||
"type": "plasmid:concurrent_game", | ||
"game": "cabinfever:standard_cabin_fever" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:cake_wars/random_four_teams" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"type": "nucleoid_extras:styled/advanced_menu", | ||
"name": { | ||
"translate": "gameType.cakewars.cake_wars" | ||
}, | ||
"icon": "minecraft:cake", | ||
"entries": [ | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:cake_wars/two_teams/root", | ||
"quick_portal": "nucleoid:cake_wars/two_teams/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
}, | ||
{ | ||
"type": "nucleoid_extras:quick_portal", | ||
"portal": "nucleoid:cake_wars/four_teams/root", | ||
"quick_portal": "nucleoid:cake_wars/four_teams/random", | ||
"message": { | ||
"translate": "text.nucleoid_extras.ui.action.maps" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:cake_wars/random_two_teams" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"type": "plasmid:on_demand", | ||
"icon": "minecraft:cobblestone", | ||
"game": "castle_wars:castlewars_with_pvp", | ||
"name": { | ||
"translate": "gameType.castle_wars.castle_wars" | ||
} | ||
} | ||
"type": "plasmid:concurrent_game", | ||
"game": "castle_wars:castlewars_with_pvp" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"type": "plasmid:on_demand", | ||
"icon": "minecraft:diamond_pickaxe", | ||
"game": "caverncrawler:standard", | ||
"name": { | ||
"translate": "gameType.caverncrawler.cavern_crawler" | ||
} | ||
} | ||
"type": "plasmid:concurrent_game", | ||
"game": "caverncrawler:standard" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"type": "plasmid:on_demand", | ||
"icon": "minecraft:magenta_glazed_terracotta", | ||
"game": "clutchbridge:standard_clutch_bridge", | ||
"name": { | ||
"translate": "gameType.clutchbridge.clutch_bridge" | ||
} | ||
} | ||
"type": "plasmid:concurrent_game", | ||
"game": "clutchbridge:standard_clutch_bridge" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
{ | ||
"type": "plasmid:on_demand", | ||
"icon": "minecraft:ladder", | ||
"game": "clutchpractice:clutch_practice", | ||
"name": { | ||
"translate": "gameType.clutchpractice.clutch_practice" | ||
} | ||
"type": "plasmid:concurrent_game", | ||
"game": "clutchpractice:clutch_practice" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"type": "plasmid:concurrent_game", | ||
"game": "nucleoid:color_swap/random" | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think only the standard configuration makes sense to include here, since Cave Ascension has the potential to be unplayable. Do you think that Cave Ascension could be moved to the cursed games?