diff --git a/lokrez/games/melee.py b/lokrez/games/melee.py index f3b6788..c39978b 100644 --- a/lokrez/games/melee.py +++ b/lokrez/games/melee.py @@ -14,7 +14,7 @@ GAME = Game( # ----------------------------------------------------------------------------- EVERYONE = [ Character( - smashggid = None, + smashggid = 1, name = "bowser", codenames = [ "bowser", ], res_urls = { @@ -24,7 +24,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 2, name = "captain falcon", codenames = [ "captain", ], res_urls = { @@ -34,7 +34,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 3, name = "donkey kong", codenames = [ "donkey", ], res_urls = { @@ -74,7 +74,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 7, name = "ganondorf", codenames = [ "ganondorf", ], res_urls = { @@ -94,7 +94,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 9, name = "jigglypuff", codenames = [ "jigglypuff", ], res_urls = { @@ -104,7 +104,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 10, name = "kirby", codenames = [ "kirby", ], res_urls = { @@ -114,7 +114,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 11, name = "link", codenames = [ "link", ], res_urls = { @@ -134,7 +134,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 13, name = "mario", codenames = [ "mario", ], res_urls = { @@ -144,7 +144,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 14, name = "marth", codenames = [ "marth", ], res_urls = { @@ -164,7 +164,17 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 16, + name = "mr game and watch", + codenames = [ "game", "mrgameandwatch", ], + res_urls = { + "smashlyon": [ + "https://resources.smashlyon.com/melee/game.zip", + ], + }, + ), + Character( + smashggid = 17, name = "ness", codenames = [ "ness", ], res_urls = { @@ -184,7 +194,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 19, name = "pichu", codenames = [ "pichu", ], res_urls = { @@ -194,7 +204,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 20, name = "pikachu", codenames = [ "pikachu", ], res_urls = { @@ -204,7 +214,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 21, name = "roy", codenames = [ "roy", ], res_urls = { @@ -234,7 +244,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 24, name = "yoshi", codenames = [ "yoshi", ], res_urls = { @@ -254,7 +264,7 @@ EVERYONE = [ }, ), Character( - smashggid = None, + smashggid = 26, name = "zelda", codenames = [ "zelda", ], res_urls = { @@ -263,15 +273,5 @@ EVERYONE = [ ], }, ), - Character( - smashggid = None, - name = "mr game and watch", - codenames = [ "game", "mrgameandwatch", ], - res_urls = { - "smashlyon": [ - "https://resources.smashlyon.com/melee/game.zip", - ], - }, - ), ]