Add Games class

With 3 games available : melee, ultimate and pplus
master
Lertsenem 2021-07-03 20:17:51 +02:00
parent b3a963fec4
commit 0bf4a7dc0e
4 changed files with 236 additions and 219 deletions

View File

@ -1,18 +1,21 @@
# ============================================================================= # =============================================================================
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
class Character: class Character:
"""Infos needed about an SSBU character""" """Infos needed about a Smash character"""
def __init__( def __init__(
self, self,
name, name,
codename, codenames,
smashggid = None, smashggid = None,
res_urls = {}, res_urls = {},
): ):
self.res_urls = res_urls self.res_urls = res_urls
self.smashggid = smashggid self.smashggid = smashggid
self.name = name self.name = name
self.codename = codename self.codenames = codenames
def __str__(self):
return self.name
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
class Game: class Game:
@ -31,4 +34,6 @@ class Game:
def list_names(self): def list_names(self):
return [self.name] + [self.fullname] + self.aliases return [self.name] + [self.fullname] + self.aliases
def __str__(self):
return self.name

View File

@ -6,6 +6,7 @@ GAME = Game(
fullname = "Super Smash Brothers Melee", fullname = "Super Smash Brothers Melee",
aliases = [ aliases = [
"ssbm", "ssbm",
"Super Smash Bros. Melee",
], ],
smashggid = 1, smashggid = 1,
) )
@ -15,7 +16,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "bowser", name = "bowser",
codename = "bowser", codenames = [ "bowser", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/bowser.zip", "https://resources.smashlyon.com/melee/bowser.zip",
@ -25,7 +26,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "captain falcon", name = "captain falcon",
codename = "captain", codenames = [ "captain", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/captain.zip", "https://resources.smashlyon.com/melee/captain.zip",
@ -35,7 +36,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "donkey kong", name = "donkey kong",
codename = "donkey", codenames = [ "donkey", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/donkey.zip", "https://resources.smashlyon.com/melee/donkey.zip",
@ -43,9 +44,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 4,
name = "dr mario", name = "dr mario",
codename = "doc", codenames = [ "doc", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/doc.zip", "https://resources.smashlyon.com/melee/doc.zip",
@ -53,9 +54,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 5,
name = "falco", name = "falco",
codename = "falco", codenames = [ "falco", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/falco.zip", "https://resources.smashlyon.com/melee/falco.zip",
@ -63,9 +64,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 6,
name = "fox", name = "fox",
codename = "fox", codenames = [ "fox", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/fox.zip", "https://resources.smashlyon.com/melee/fox.zip",
@ -75,7 +76,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "ganondorf", name = "ganondorf",
codename = "ganondorf", codenames = [ "ganondorf", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/ganondorf.zip", "https://resources.smashlyon.com/melee/ganondorf.zip",
@ -83,9 +84,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 8,
name = "ice climbers", name = "ice climbers",
codename = "iceclimber", codenames = [ "iceclimber", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/iceclimber.zip", "https://resources.smashlyon.com/melee/iceclimber.zip",
@ -95,7 +96,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "jigglypuff", name = "jigglypuff",
codename = "jigglypuff", codenames = [ "jigglypuff", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/jigglypuff.zip", "https://resources.smashlyon.com/melee/jigglypuff.zip",
@ -105,7 +106,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "kirby", name = "kirby",
codename = "kirby", codenames = [ "kirby", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/kirby.zip", "https://resources.smashlyon.com/melee/kirby.zip",
@ -115,7 +116,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "link", name = "link",
codename = "link", codenames = [ "link", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/link.zip", "https://resources.smashlyon.com/melee/link.zip",
@ -123,9 +124,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 12,
name = "luigi", name = "luigi",
codename = "luigi", codenames = [ "luigi", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/luigi.zip", "https://resources.smashlyon.com/melee/luigi.zip",
@ -135,7 +136,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "mario", name = "mario",
codename = "mario", codenames = [ "mario", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/mario.zip", "https://resources.smashlyon.com/melee/mario.zip",
@ -145,7 +146,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "marth", name = "marth",
codename = "marth", codenames = [ "marth", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/marth.zip", "https://resources.smashlyon.com/melee/marth.zip",
@ -153,9 +154,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 15,
name = "mewtwo", name = "mewtwo",
codename = "mewtwo", codenames = [ "mewtwo", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/mewtwo.zip", "https://resources.smashlyon.com/melee/mewtwo.zip",
@ -165,7 +166,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "ness", name = "ness",
codename = "ness", codenames = [ "ness", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/ness.zip", "https://resources.smashlyon.com/melee/ness.zip",
@ -173,9 +174,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 18,
name = "peach", name = "peach",
codename = "peach", codenames = [ "peach", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/peach.zip", "https://resources.smashlyon.com/melee/peach.zip",
@ -185,7 +186,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "pichu", name = "pichu",
codename = "pichu", codenames = [ "pichu", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/pichu.zip", "https://resources.smashlyon.com/melee/pichu.zip",
@ -195,7 +196,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "pikachu", name = "pikachu",
codename = "pikachu", codenames = [ "pikachu", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/pikachu.zip", "https://resources.smashlyon.com/melee/pikachu.zip",
@ -205,7 +206,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "roy", name = "roy",
codename = "roy", codenames = [ "roy", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/roy.zip", "https://resources.smashlyon.com/melee/roy.zip",
@ -213,9 +214,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 22,
name = "samus", name = "samus",
codename = "samus", codenames = [ "samus", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/samus.zip", "https://resources.smashlyon.com/melee/samus.zip",
@ -223,9 +224,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 23,
name = "sheik", name = "sheik",
codename = "sheik", codenames = [ "sheik", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/sheik.zip", "https://resources.smashlyon.com/melee/sheik.zip",
@ -235,7 +236,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "yoshi", name = "yoshi",
codename = "yoshi", codenames = [ "yoshi", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/yoshi.zip", "https://resources.smashlyon.com/melee/yoshi.zip",
@ -243,9 +244,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 25,
name = "young link", name = "young link",
codename = "yink", codenames = [ "yink", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/yink.zip", "https://resources.smashlyon.com/melee/yink.zip",
@ -255,7 +256,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "zelda", name = "zelda",
codename = "zelda", codenames = [ "zelda", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/zelda.zip", "https://resources.smashlyon.com/melee/zelda.zip",
@ -265,7 +266,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "mr game and watch", name = "mr game and watch",
codename = "mrgameandwatch", codenames = [ "mrgameandwatch", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/melee/mrgameandwatch.zip", "https://resources.smashlyon.com/melee/mrgameandwatch.zip",

View File

@ -8,16 +8,17 @@ GAME = Game(
"projectplus", "projectplus",
"p+", "p+",
"project plus", "project plus",
"Project+",
], ],
smashggid = None, smashggid = 33602,
) )
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
EVERYONE = [ EVERYONE = [
Character( Character(
smashggid = 100, smashggid = 1586,
name = "bowser", name = "bowser",
codename = "Bowser", codenames = [ "Bowser", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Bowser.zip", "https://resources.smashlyon.com/pplus/Bowser.zip",
@ -26,9 +27,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1610,
name = "captain falcon", name = "captain falcon",
codename = "CF", codenames = [ "CF", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Captain Falcon.zip", "https://resources.smashlyon.com/pplus/Captain Falcon.zip",
@ -37,9 +38,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1608,
name = "charizard", name = "charizard",
codename = "charizard", codenames = [ "charizard", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Charizard.zip", "https://resources.smashlyon.com/pplus/Charizard.zip",
@ -48,9 +49,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1589,
name = "diddy kong", name = "diddy kong",
codename = "Diddy", codenames = [ "Diddy", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Diddy Kong.zip", "https://resources.smashlyon.com/pplus/Diddy Kong.zip",
@ -59,9 +60,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 102, smashggid = 1588,
name = "donkey kong", name = "donkey kong",
codename = "DK", codenames = [ "DK", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Donkey Kong.zip", "https://resources.smashlyon.com/pplus/Donkey Kong.zip",
@ -70,9 +71,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1601,
name = "falco", name = "falco",
codename = "falco", codenames = [ "falco", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Falco.zip", "https://resources.smashlyon.com/pplus/Falco.zip",
@ -81,9 +82,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1600,
name = "fox", name = "fox",
codename = "fox", codenames = [ "fox", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Fox.zip", "https://resources.smashlyon.com/pplus/Fox.zip",
@ -92,9 +93,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1593,
name = "Ganondorf", name = "Ganondorf",
codename = "ganon", codenames = [ "ganon", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Ganondorf.zip", "https://resources.smashlyon.com/pplus/Ganondorf.zip",
@ -103,9 +104,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1613,
name = "ice climbers", name = "ice climbers",
codename = "IC", codenames = [ "IC", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Ice Climbers.zip", "https://resources.smashlyon.com/pplus/Ice Climbers.zip",
@ -114,9 +115,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1616,
name = "ike", name = "ike",
codename = "Ike", codenames = [ "Ike", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Ike.zip", "https://resources.smashlyon.com/pplus/Ike.zip",
@ -125,9 +126,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 121, smashggid = 1607,
name = "ivysaur", name = "ivysaur",
codename = "Ivysaur", codenames = [ "Ivysaur", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Ivysaur.zip", "https://resources.smashlyon.com/pplus/Ivysaur.zip",
@ -136,9 +137,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 118, smashggid = 1604,
name = "jigglypuff", name = "jigglypuff",
codename = "jigglypuff", codenames = [ "jigglypuff", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Jigglypuff.zip", "https://resources.smashlyon.com/pplus/Jigglypuff.zip",
@ -147,9 +148,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1599,
name = "king Dedede", name = "king dedede",
codename = "DeDeDe", codenames = [ "DeDeDe", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/DeDeDe.zip", "https://resources.smashlyon.com/pplus/DeDeDe.zip",
@ -158,9 +159,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1597,
name = "kirby", name = "kirby",
codename = "Kirby", codenames = [ "Kirby", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Kirby.zip", "https://resources.smashlyon.com/pplus/Kirby.zip",
@ -169,9 +170,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1590,
name = "link", name = "link",
codename = "link", codenames = [ "link", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Link.zip", "https://resources.smashlyon.com/pplus/Link.zip",
@ -180,9 +181,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1609,
name = "lucario", name = "lucario",
codename = "Lucario", codenames = [ "Lucario", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Lucario.zip", "https://resources.smashlyon.com/pplus/Lucario.zip",
@ -191,9 +192,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1612,
name = "lucas", name = "lucas",
codename = "lucas", codenames = [ "lucas", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Lucas.zip", "https://resources.smashlyon.com/pplus/Lucas.zip",
@ -202,9 +203,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1584,
name = "luigi", name = "luigi",
codename = "luigi", codenames = [ "luigi", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Luigi.zip", "https://resources.smashlyon.com/pplus/Luigi.zip",
@ -213,9 +214,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1583,
name = "mario", name = "mario",
codename = "Mario", codenames = [ "Mario", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Mario.zip", "https://resources.smashlyon.com/pplus/Mario.zip",
@ -224,9 +225,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 128, smashggid = 1614,
name = "marth", name = "marth",
codename = "Marth", codenames = [ "Marth", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Marth.zip", "https://resources.smashlyon.com/pplus/Marth.zip",
@ -235,9 +236,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1598,
name = "meta knight", name = "meta knight",
codename = "metaknight", codenames = [ "metaknight", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Metaknight.zip", "https://resources.smashlyon.com/pplus/Metaknight.zip",
@ -246,9 +247,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1605,
name = "mewtwo", name = "mewtwo",
codename = "mewtwo", codenames = [ "mewtwo", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Mewtwo.zip", "https://resources.smashlyon.com/pplus/Mewtwo.zip",
@ -257,9 +258,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1611,
name = "ness", name = "ness",
codename = "ness", codenames = [ "ness", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Ness.zip", "https://resources.smashlyon.com/pplus/Ness.zip",
@ -268,9 +269,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 134, smashggid = 1620,
name = "olimar", name = "olimar",
codename = "Olimar", codenames = [ "Olimar", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Olimar.zip", "https://resources.smashlyon.com/pplus/Olimar.zip",
@ -279,9 +280,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1585,
name = "peach", name = "peach",
codename = "Peach", codenames = [ "Peach", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Peach.zip", "https://resources.smashlyon.com/pplus/Peach.zip",
@ -290,9 +291,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1603,
name = "pikachu", name = "pikachu",
codename = "Pikachu", codenames = [ "Pikachu", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Pikachu.zip", "https://resources.smashlyon.com/pplus/Pikachu.zip",
@ -301,9 +302,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1618,
name = "pit", name = "pit",
codename = "pit", codenames = [ "pit", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Pit.zip", "https://resources.smashlyon.com/pplus/Pit.zip",
@ -312,9 +313,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1621,
name = "rob", name = "rob",
codename = "Rob", codenames = [ "Rob", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Rob.zip", "https://resources.smashlyon.com/pplus/Rob.zip",
@ -323,9 +324,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1615,
name = "roy", name = "roy",
codename = "Roy", codenames = [ "Roy", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Roy.zip", "https://resources.smashlyon.com/pplus/Roy.zip",
@ -334,9 +335,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1595,
name = "samus", name = "samus",
codename = "samus", codenames = [ "samus", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Samus.zip", "https://resources.smashlyon.com/pplus/Samus.zip",
@ -345,9 +346,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1592,
name = "sheik", name = "sheik",
codename = "sheik", codenames = [ "sheik", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Sheik.zip", "https://resources.smashlyon.com/pplus/Sheik.zip",
@ -356,9 +357,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1622,
name = "snake", name = "snake",
codename = "Snake", codenames = [ "Snake", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Snake.zip", "https://resources.smashlyon.com/pplus/Snake.zip",
@ -367,9 +368,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1623,
name = "sonic", name = "sonic",
codename = "Sonic", codenames = [ "Sonic", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Sonic.zip", "https://resources.smashlyon.com/pplus/Sonic.zip",
@ -378,9 +379,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1606,
name = "squirtle", name = "squirtle",
codename = "squirtle", codenames = [ "squirtle", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Squirtle.zip", "https://resources.smashlyon.com/pplus/Squirtle.zip",
@ -389,9 +390,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1594,
name = "toon link", name = "toon link",
codename = "Toon Link", codenames = [ "Toon Link", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Toon Link.zip", "https://resources.smashlyon.com/pplus/Toon Link.zip",
@ -400,9 +401,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 133, smashggid = 1619,
name = "wario", name = "wario",
codename = "Wario", codenames = [ "Wario", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Wario.zip", "https://resources.smashlyon.com/pplus/Wario.zip",
@ -411,9 +412,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1601602,
name = "wolf", name = "wolf",
codename = "Wolf", codenames = [ "Wolf", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Wolf.zip", "https://resources.smashlyon.com/pplus/Wolf.zip",
@ -422,9 +423,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1587,
name = "yoshi", name = "yoshi",
codename = "Yoshi", codenames = [ "Yoshi", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Yoshi.zip", "https://resources.smashlyon.com/pplus/Yoshi.zip",
@ -433,9 +434,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1591,
name = "zelda", name = "zelda",
codename = "Zelda", codenames = [ "Zelda", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Zelda.zip", "https://resources.smashlyon.com/pplus/Zelda.zip",
@ -444,9 +445,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1596,
name = "zero suit samus", name = "zero suit samus",
codename = "zss", codenames = [ "zss", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Zero Suit Samus.zip", "https://resources.smashlyon.com/pplus/Zero Suit Samus.zip",
@ -455,9 +456,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = 131, smashggid = 1617,
name = "mr game and watch", name = "mr game and watch",
codename = "Gw", codenames = [ "Gw", ],
res_urls = { res_urls = {
"smashlyon": [ "smashlyon": [
"https://resources.smashlyon.com/pplus/Mr Game & Watch.zip", "https://resources.smashlyon.com/pplus/Mr Game & Watch.zip",
@ -465,5 +466,14 @@ EVERYONE = [
], ],
}, },
), ),
Character(
smashggid = 1627,
name = "knuckles",
codenames = [ "knuckles", ],
res_urls = {
"smashlyon": [
],
},
),
] ]

View File

@ -6,8 +6,9 @@ GAME = Game(
fullname = "Super Smash Brothers Ultimate", fullname = "Super Smash Brothers Ultimate",
aliases = [ aliases = [
"ultimate", "ultimate",
"Super Smash Bros. Ultimate",
], ],
smashggid = None, smashggid = 1386,
) )
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
@ -15,7 +16,7 @@ EVERYONE = [
Character( Character(
smashggid = 1530, smashggid = 1530,
name = "banjo & kazooie", name = "banjo & kazooie",
codename = "buddy", codenames = [ "buddy", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/121027/", "https://www.spriters-resource.com/download/121027/",
@ -24,9 +25,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1271,
name = "bayonetta", name = "bayonetta",
codename = "bayonetta", codenames = [ "bayonetta", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111299/", "https://www.spriters-resource.com/download/111299/",
@ -37,7 +38,7 @@ EVERYONE = [
Character( Character(
smashggid = 1272, smashggid = 1272,
name = "bowser jr", name = "bowser jr",
codename = "koopajr", codenames = [ "koopajr", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111303/", "https://www.spriters-resource.com/download/111303/",
@ -48,7 +49,7 @@ EVERYONE = [
Character( Character(
smashggid = 1273, smashggid = 1273,
name = "bowser", name = "bowser",
codename = "koopa", codenames = [ "koopa", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111302/", "https://www.spriters-resource.com/download/111302/",
@ -59,7 +60,7 @@ EVERYONE = [
Character( Character(
smashggid = 1539, smashggid = 1539,
name = "byleth", name = "byleth",
codename = "master", codenames = [ "master", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/125348/", "https://www.spriters-resource.com/download/125348/",
@ -70,7 +71,7 @@ EVERYONE = [
Character( Character(
smashggid = 1274, smashggid = 1274,
name = "captain falcon", name = "captain falcon",
codename = "captain", codenames = [ "captain", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111304/", "https://www.spriters-resource.com/download/111304/",
@ -81,7 +82,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "charizard", name = "charizard",
codename = "plizardon", codenames = [ "plizardon", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111351/", "https://www.spriters-resource.com/download/111351/",
@ -92,7 +93,7 @@ EVERYONE = [
Character( Character(
smashggid = 1409, smashggid = 1409,
name = "chrom", name = "chrom",
codename = "chrom", codenames = [ "chrom", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111305/", "https://www.spriters-resource.com/download/111305/",
@ -103,7 +104,7 @@ EVERYONE = [
Character( Character(
smashggid = 1275, smashggid = 1275,
name = "cloud", name = "cloud",
codename = "cloud", codenames = [ "cloud", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111306/", "https://www.spriters-resource.com/download/111306/",
@ -112,9 +113,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1276,
name = "corrin", name = "corrin",
codename = "kamui", codenames = [ "kamui", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111307/", "https://www.spriters-resource.com/download/111307/",
@ -125,7 +126,7 @@ EVERYONE = [
Character( Character(
smashggid = 1277, smashggid = 1277,
name = "daisy", name = "daisy",
codename = "daisy", codenames = [ "daisy", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111308/", "https://www.spriters-resource.com/download/111308/",
@ -134,9 +135,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1278,
name = "dark pit", name = "dark pit",
codename = "pitb", codenames = [ "pitb", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111309/", "https://www.spriters-resource.com/download/111309/",
@ -147,7 +148,7 @@ EVERYONE = [
Character( Character(
smashggid = 1279, smashggid = 1279,
name = "diddy kong", name = "diddy kong",
codename = "diddy", codenames = [ "diddy", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111311/", "https://www.spriters-resource.com/download/111311/",
@ -158,7 +159,7 @@ EVERYONE = [
Character( Character(
smashggid = 1280, smashggid = 1280,
name = "donkey kong", name = "donkey kong",
codename = "donkey", codenames = [ "donkey", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111312/", "https://www.spriters-resource.com/download/111312/",
@ -169,7 +170,7 @@ EVERYONE = [
Character( Character(
smashggid = 1282, smashggid = 1282,
name = "dr mario", name = "dr mario",
codename = "mariod", codenames = [ "mariod", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111313/", "https://www.spriters-resource.com/download/111313/",
@ -180,7 +181,7 @@ EVERYONE = [
Character( Character(
smashggid = 1283, smashggid = 1283,
name = "duck hunt", name = "duck hunt",
codename = "duckhunt", codenames = [ "duckhunt", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111314/", "https://www.spriters-resource.com/download/111314/",
@ -191,7 +192,7 @@ EVERYONE = [
Character( Character(
smashggid = 1285, smashggid = 1285,
name = "falco", name = "falco",
codename = "falco", codenames = [ "falco", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111315/", "https://www.spriters-resource.com/download/111315/",
@ -202,7 +203,7 @@ EVERYONE = [
Character( Character(
smashggid = 1286, smashggid = 1286,
name = "fox", name = "fox",
codename = "fox", codenames = [ "fox", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111316/", "https://www.spriters-resource.com/download/111316/",
@ -213,7 +214,7 @@ EVERYONE = [
Character( Character(
smashggid = 1287, smashggid = 1287,
name = "ganondorf", name = "ganondorf",
codename = "ganon", codenames = [ "ganon", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111317/", "https://www.spriters-resource.com/download/111317/",
@ -222,9 +223,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1289,
name = "greninja", name = "greninja",
codename = "gekkouga", codenames = [ "gekkouga", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111318/", "https://www.spriters-resource.com/download/111318/",
@ -235,7 +236,7 @@ EVERYONE = [
Character( Character(
smashggid = 1526, smashggid = 1526,
name = "hero", name = "hero",
codename = "brave", codenames = [ "brave", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/119842/", "https://www.spriters-resource.com/download/119842/",
@ -246,7 +247,7 @@ EVERYONE = [
Character( Character(
smashggid = 1290, smashggid = 1290,
name = "ice climbers", name = "ice climbers",
codename = "ice_climber", codenames = [ "ice_climber", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111319/", "https://www.spriters-resource.com/download/111319/",
@ -257,7 +258,7 @@ EVERYONE = [
Character( Character(
smashggid = 1291, smashggid = 1291,
name = "ike", name = "ike",
codename = "ike", codenames = [ "ike", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111320/", "https://www.spriters-resource.com/download/111320/",
@ -268,7 +269,7 @@ EVERYONE = [
Character( Character(
smashggid = 1292, smashggid = 1292,
name = "inkling", name = "inkling",
codename = "inkling", codenames = [ "inkling", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111322/", "https://www.spriters-resource.com/download/111322/",
@ -279,7 +280,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "ivysaur", name = "ivysaur",
codename = "pfushigisou", codenames = [ "pfushigisou", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111352/", "https://www.spriters-resource.com/download/111352/",
@ -290,7 +291,7 @@ EVERYONE = [
Character( Character(
smashggid = 1293, smashggid = 1293,
name = "jigglypuff", name = "jigglypuff",
codename = "purin", codenames = [ "purin", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111324/", "https://www.spriters-resource.com/download/111324/",
@ -301,7 +302,7 @@ EVERYONE = [
Character( Character(
smashggid = 1410, smashggid = 1410,
name = "ken", name = "ken",
codename = "ken", codenames = [ "ken", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111325/", "https://www.spriters-resource.com/download/111325/",
@ -312,7 +313,7 @@ EVERYONE = [
Character( Character(
smashggid = 1294, smashggid = 1294,
name = "king dedede", name = "king dedede",
codename = "dedede", codenames = [ "dedede", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111326/", "https://www.spriters-resource.com/download/111326/",
@ -323,7 +324,7 @@ EVERYONE = [
Character( Character(
smashggid = 1295, smashggid = 1295,
name = "kirby", name = "kirby",
codename = "kirby", codenames = [ "kirby", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111328/", "https://www.spriters-resource.com/download/111328/",
@ -334,7 +335,7 @@ EVERYONE = [
Character( Character(
smashggid = 1296, smashggid = 1296,
name = "link", name = "link",
codename = "link", codenames = [ "link", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111329/", "https://www.spriters-resource.com/download/111329/",
@ -345,7 +346,7 @@ EVERYONE = [
Character( Character(
smashggid = 1297, smashggid = 1297,
name = "little mac", name = "little mac",
codename = "littlemac", codenames = [ "littlemac", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111330/", "https://www.spriters-resource.com/download/111330/",
@ -356,7 +357,7 @@ EVERYONE = [
Character( Character(
smashggid = 1298, smashggid = 1298,
name = "lucario", name = "lucario",
codename = "lucario", codenames = [ "lucario", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111331/", "https://www.spriters-resource.com/download/111331/",
@ -367,7 +368,7 @@ EVERYONE = [
Character( Character(
smashggid = 1299, smashggid = 1299,
name = "lucas", name = "lucas",
codename = "lucas", codenames = [ "lucas", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111332/", "https://www.spriters-resource.com/download/111332/",
@ -378,7 +379,7 @@ EVERYONE = [
Character( Character(
smashggid = 1300, smashggid = 1300,
name = "lucina", name = "lucina",
codename = "lucina", codenames = [ "lucina", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111333/", "https://www.spriters-resource.com/download/111333/",
@ -389,7 +390,7 @@ EVERYONE = [
Character( Character(
smashggid = 1301, smashggid = 1301,
name = "luigi", name = "luigi",
codename = "luigi", codenames = [ "luigi", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111334/", "https://www.spriters-resource.com/download/111334/",
@ -400,7 +401,7 @@ EVERYONE = [
Character( Character(
smashggid = 1302, smashggid = 1302,
name = "mario", name = "mario",
codename = "mario", codenames = [ "mario", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111335/", "https://www.spriters-resource.com/download/111335/",
@ -409,9 +410,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1304,
name = "marth", name = "marth",
codename = "marth", codenames = [ "marth", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111336/", "https://www.spriters-resource.com/download/111336/",
@ -422,7 +423,7 @@ EVERYONE = [
Character( Character(
smashggid = 1305, smashggid = 1305,
name = "mega man", name = "mega man",
codename = "rockman", codenames = [ "rockman", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111337/", "https://www.spriters-resource.com/download/111337/",
@ -433,7 +434,7 @@ EVERYONE = [
Character( Character(
smashggid = 1307, smashggid = 1307,
name = "meta knight", name = "meta knight",
codename = "metaknight", codenames = [ "metaknight", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111338/", "https://www.spriters-resource.com/download/111338/",
@ -444,7 +445,7 @@ EVERYONE = [
Character( Character(
smashggid = 1310, smashggid = 1310,
name = "mewtwo", name = "mewtwo",
codename = "mewtwo", codenames = [ "mewtwo", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111339/", "https://www.spriters-resource.com/download/111339/",
@ -453,9 +454,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1311,
name = "mii fighter", name = "mii fighter",
codename = "miifighter", codenames = [ "miifighter", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111340/", "https://www.spriters-resource.com/download/111340/",
@ -466,7 +467,7 @@ EVERYONE = [
Character( Character(
smashggid = 1415, smashggid = 1415,
name = "mii gunner", name = "mii gunner",
codename = "miigunner", codenames = [ "miigunner", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111340/", "https://www.spriters-resource.com/download/111340/",
@ -475,9 +476,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1414,
name = "mii swordsman", name = "mii swordsman",
codename = "miiswordsman", codenames = [ "miiswordsman", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111340/", "https://www.spriters-resource.com/download/111340/",
@ -488,7 +489,7 @@ EVERYONE = [
Character( Character(
smashggid = 1313, smashggid = 1313,
name = "ness", name = "ness",
codename = "ness", codenames = [ "ness", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111342/", "https://www.spriters-resource.com/download/111342/",
@ -499,7 +500,7 @@ EVERYONE = [
Character( Character(
smashggid = 1314, smashggid = 1314,
name = "olimar", name = "olimar",
codename = "pikmin", codenames = [ "pikmin", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111343/", "https://www.spriters-resource.com/download/111343/",
@ -510,7 +511,7 @@ EVERYONE = [
Character( Character(
smashggid = 1315, smashggid = 1315,
name = "pacman", name = "pacman",
codename = "pacman", codenames = [ "pacman", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111344/", "https://www.spriters-resource.com/download/111344/",
@ -521,7 +522,7 @@ EVERYONE = [
Character( Character(
smashggid = 1316, smashggid = 1316,
name = "palutena", name = "palutena",
codename = "palutena", codenames = [ "palutena", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111345/", "https://www.spriters-resource.com/download/111345/",
@ -532,7 +533,7 @@ EVERYONE = [
Character( Character(
smashggid = 1317, smashggid = 1317,
name = "peach", name = "peach",
codename = "peach", codenames = [ "peach", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111346/", "https://www.spriters-resource.com/download/111346/",
@ -543,7 +544,7 @@ EVERYONE = [
Character( Character(
smashggid = 1318, smashggid = 1318,
name = "pichu", name = "pichu",
codename = "pichu", codenames = [ "pichu", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111347/", "https://www.spriters-resource.com/download/111347/",
@ -554,7 +555,7 @@ EVERYONE = [
Character( Character(
smashggid = 1319, smashggid = 1319,
name = "pikachu", name = "pikachu",
codename = "pikachu", codenames = [ "pikachu", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111348/", "https://www.spriters-resource.com/download/111348/",
@ -565,7 +566,7 @@ EVERYONE = [
Character( Character(
smashggid = 1320, smashggid = 1320,
name = "pit", name = "pit",
codename = "pit", codenames = [ "pit", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111349/", "https://www.spriters-resource.com/download/111349/",
@ -576,7 +577,7 @@ EVERYONE = [
Character( Character(
smashggid = 1321, smashggid = 1321,
name = "pokemon trainer", name = "pokemon trainer",
codename = "ptrainer", codenames = [ "ptrainer", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111350/", "https://www.spriters-resource.com/download/111350/",
@ -587,7 +588,7 @@ EVERYONE = [
Character( Character(
smashggid = 1412, smashggid = 1412,
name = "richter", name = "richter",
codename = "richter", codenames = [ "richter", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111354/", "https://www.spriters-resource.com/download/111354/",
@ -598,7 +599,7 @@ EVERYONE = [
Character( Character(
smashggid = 1322, smashggid = 1322,
name = "ridley", name = "ridley",
codename = "ridley", codenames = [ "ridley", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111355/", "https://www.spriters-resource.com/download/111355/",
@ -609,7 +610,7 @@ EVERYONE = [
Character( Character(
smashggid = 1323, smashggid = 1323,
name = "rob", name = "rob",
codename = "robot", codenames = [ "robot", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111356/", "https://www.spriters-resource.com/download/111356/",
@ -620,7 +621,7 @@ EVERYONE = [
Character( Character(
smashggid = 1324, smashggid = 1324,
name = "robin", name = "robin",
codename = "reflet", codenames = [ "reflet", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111357/", "https://www.spriters-resource.com/download/111357/",
@ -631,7 +632,7 @@ EVERYONE = [
Character( Character(
smashggid = 1325, smashggid = 1325,
name = "rosalina and luma", name = "rosalina and luma",
codename = "rosetta", codenames = [ "rosetta", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111358/", "https://www.spriters-resource.com/download/111358/",
@ -642,7 +643,7 @@ EVERYONE = [
Character( Character(
smashggid = 1326, smashggid = 1326,
name = "roy", name = "roy",
codename = "roy", codenames = [ "roy", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111359/", "https://www.spriters-resource.com/download/111359/",
@ -653,7 +654,7 @@ EVERYONE = [
Character( Character(
smashggid = 1327, smashggid = 1327,
name = "ryu", name = "ryu",
codename = "ryu", codenames = [ "ryu", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111360/", "https://www.spriters-resource.com/download/111360/",
@ -664,7 +665,7 @@ EVERYONE = [
Character( Character(
smashggid = 1328, smashggid = 1328,
name = "samus", name = "samus",
codename = "samus", codenames = [ "samus", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111361/", "https://www.spriters-resource.com/download/111361/",
@ -675,7 +676,7 @@ EVERYONE = [
Character( Character(
smashggid = 1329, smashggid = 1329,
name = "sheik", name = "sheik",
codename = "sheik", codenames = [ "sheik", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111362/", "https://www.spriters-resource.com/download/111362/",
@ -686,7 +687,7 @@ EVERYONE = [
Character( Character(
smashggid = 1330, smashggid = 1330,
name = "shulk", name = "shulk",
codename = "shulk", codenames = [ "shulk", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111363/", "https://www.spriters-resource.com/download/111363/",
@ -695,9 +696,9 @@ EVERYONE = [
}, },
), ),
Character( Character(
smashggid = None, smashggid = 1411,
name = "simon", name = "simon",
codename = "simon", codenames = [ "simon", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111364/", "https://www.spriters-resource.com/download/111364/",
@ -708,7 +709,7 @@ EVERYONE = [
Character( Character(
smashggid = 1331, smashggid = 1331,
name = "snake", name = "snake",
codename = "snake", codenames = [ "snake", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111365/", "https://www.spriters-resource.com/download/111365/",
@ -719,7 +720,7 @@ EVERYONE = [
Character( Character(
smashggid = 1332, smashggid = 1332,
name = "sonic", name = "sonic",
codename = "sonic", codenames = [ "sonic", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111366/", "https://www.spriters-resource.com/download/111366/",
@ -730,7 +731,7 @@ EVERYONE = [
Character( Character(
smashggid = None, smashggid = None,
name = "squirtle", name = "squirtle",
codename = "pzenigame", codenames = [ "pzenigame", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111353/", "https://www.spriters-resource.com/download/111353/",
@ -741,7 +742,7 @@ EVERYONE = [
Character( Character(
smashggid = 1333, smashggid = 1333,
name = "toon link", name = "toon link",
codename = "toonlink", codenames = [ "toonlink", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111367/", "https://www.spriters-resource.com/download/111367/",
@ -752,7 +753,7 @@ EVERYONE = [
Character( Character(
smashggid = 1334, smashggid = 1334,
name = "villager", name = "villager",
codename = "murabito", codenames = [ "murabito", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111368/", "https://www.spriters-resource.com/download/111368/",
@ -763,7 +764,7 @@ EVERYONE = [
Character( Character(
smashggid = 1335, smashggid = 1335,
name = "wario", name = "wario",
codename = "wario", codenames = [ "wario", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111369/", "https://www.spriters-resource.com/download/111369/",
@ -774,7 +775,7 @@ EVERYONE = [
Character( Character(
smashggid = 1336, smashggid = 1336,
name = "wii fit trainer", name = "wii fit trainer",
codename = "wiifit", codenames = [ "wiifit", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111370/", "https://www.spriters-resource.com/download/111370/",
@ -785,7 +786,7 @@ EVERYONE = [
Character( Character(
smashggid = 1337, smashggid = 1337,
name = "wolf", name = "wolf",
codename = "wolf", codenames = [ "wolf", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111371/", "https://www.spriters-resource.com/download/111371/",
@ -796,7 +797,7 @@ EVERYONE = [
Character( Character(
smashggid = 1338, smashggid = 1338,
name = "yoshi", name = "yoshi",
codename = "yoshi", codenames = [ "yoshi", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111372/", "https://www.spriters-resource.com/download/111372/",
@ -807,7 +808,7 @@ EVERYONE = [
Character( Character(
smashggid = 1339, smashggid = 1339,
name = "young link", name = "young link",
codename = "younglink", codenames = [ "younglink", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111373/", "https://www.spriters-resource.com/download/111373/",
@ -818,7 +819,7 @@ EVERYONE = [
Character( Character(
smashggid = 1340, smashggid = 1340,
name = "zelda", name = "zelda",
codename = "zelda", codenames = [ "zelda", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111374/", "https://www.spriters-resource.com/download/111374/",
@ -829,7 +830,7 @@ EVERYONE = [
Character( Character(
smashggid = 1341, smashggid = 1341,
name = "zero suit samus", name = "zero suit samus",
codename = "szerosuit", codenames = [ "szerosuit", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111375/", "https://www.spriters-resource.com/download/111375/",
@ -840,7 +841,7 @@ EVERYONE = [
Character( Character(
smashggid = 1405, smashggid = 1405,
name = "mr game and watch", name = "mr game and watch",
codename = "gamewatch", codenames = [ "gamewatch", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111341/", "https://www.spriters-resource.com/download/111341/",
@ -851,7 +852,7 @@ EVERYONE = [
Character( Character(
smashggid = 1406, smashggid = 1406,
name = "incineroar", name = "incineroar",
codename = "gaogaen", codenames = [ "gaogaen", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111321/", "https://www.spriters-resource.com/download/111321/",
@ -862,7 +863,7 @@ EVERYONE = [
Character( Character(
smashggid = 1407, smashggid = 1407,
name = "king k rool", name = "king k rool",
codename = "krool", codenames = [ "krool", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111327/", "https://www.spriters-resource.com/download/111327/",
@ -873,7 +874,7 @@ EVERYONE = [
Character( Character(
smashggid = 1408, smashggid = 1408,
name = "dark samus", name = "dark samus",
codename = "samusd", codenames = [ "samusd", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111310/", "https://www.spriters-resource.com/download/111310/",
@ -884,7 +885,7 @@ EVERYONE = [
Character( Character(
smashggid = 1413, smashggid = 1413,
name = "isabelle", name = "isabelle",
codename = "shizue", codenames = [ "shizue", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/111323/", "https://www.spriters-resource.com/download/111323/",
@ -895,7 +896,7 @@ EVERYONE = [
Character( Character(
smashggid = 1441, smashggid = 1441,
name = "piranha plant", name = "piranha plant",
codename = "packun", codenames = [ "packun", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/113440/", "https://www.spriters-resource.com/download/113440/",
@ -906,7 +907,7 @@ EVERYONE = [
Character( Character(
smashggid = 1453, smashggid = 1453,
name = "joker", name = "joker",
codename = "jack", codenames = [ "jack", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/116168/", "https://www.spriters-resource.com/download/116168/",
@ -917,7 +918,7 @@ EVERYONE = [
Character( Character(
smashggid = 1532, smashggid = 1532,
name = "terry", name = "terry",
codename = "dolly", codenames = [ "dolly", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/123089/", "https://www.spriters-resource.com/download/123089/",
@ -928,7 +929,7 @@ EVERYONE = [
Character( Character(
smashggid = 1747, smashggid = 1747,
name = "min min", name = "min min",
codename = "tantan", codenames = [ "tantan", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/134242/", "https://www.spriters-resource.com/download/134242/",
@ -939,7 +940,7 @@ EVERYONE = [
Character( Character(
smashggid = 1766, smashggid = 1766,
name = "steve", name = "steve",
codename = "pickel", codenames = [ "pickel", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/140939/", "https://www.spriters-resource.com/download/140939/",
@ -950,7 +951,7 @@ EVERYONE = [
Character( Character(
smashggid = 1777, smashggid = 1777,
name = "sephiroth", name = "sephiroth",
codename = "edge", codenames = [ "edge", ],
res_urls = { res_urls = {
"spriters": [ "spriters": [
"https://www.spriters-resource.com/download/145102/", "https://www.spriters-resource.com/download/145102/",