Skip to content

Instantly share code, notes, and snippets.

@chaseholdren
Created July 23, 2019 22:35
Show Gist options
  • Save chaseholdren/a14a283e94f0fa3bfd433dc36dddf501 to your computer and use it in GitHub Desktop.
Save chaseholdren/a14a283e94f0fa3bfd433dc36dddf501 to your computer and use it in GitHub Desktop.
MeleeCharacters
const MeleeCharacters = {
bowser: {
name: 'Bowser',
id: 5,
tierPosition: 8,
colors: ['green', 'blue', 'black', 'red'],
defaultColor: 'green',
},
donkeyKong: {
name: 'Donkey Kong',
id: 1,
tierPosition: 6,
colors: ['default', 'blue', 'black', 'green', 'red'],
defaultColor: 'default',
},
doc: {
name: 'Dr. Mario',
id: 22,
tierPosition: 5,
colors: ['default', 'blue', 'black', 'green', 'red'],
defaultColor: 'default',
},
falco: {
name: 'Falco',
id: 20,
tierPosition: 2,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
falcon: {
name: 'Falcon',
id: 0,
tierPosition: 3,
colors: ['default', 'blue', 'black', 'green', 'red', 'white'],
defaultColor: 'default',
},
fox: {
name: 'Fox',
id: 2,
tierPosition: 1,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
gameAndWatch: {
name: 'Game & Watch',
id: 3,
tierPosition: 7,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
ganondorf: {
name: 'Ganondorf',
id: 25,
tierPosition: 6,
colors: ['default', 'blue', 'green', 'purple', 'red'],
defaultColor: 'default',
},
iceClimbers: {
name: 'Ice Climbers',
id: 14,
tierPosition: 3,
colors: ['default', 'green', 'orange', 'red'],
defaultColor: 'default',
},
kirby: {
name: 'Kirby',
id: 4,
tierPosition: 8,
colors: ['default', 'blue', 'green', 'red', 'white', 'yellow'],
defaultColor: 'default',
},
link: {
name: 'Link',
id: 6,
tierPosition: 6,
colors: ['green', 'blue', 'black', 'red', 'white'],
defaultColor: 'green',
},
luigi: {
name: 'Luigi',
id: 7,
tierPosition: 5,
colors: ['green', 'blue', 'red', 'white'],
defaultColor: 'green',
},
mario: {
name: 'Mario',
id: 8,
tierPosition: 6,
colors: ['red', 'blue', 'green', 'black', 'yellow'],
defaultColor: 'red',
},
marth: {
name: 'Marth',
id: 9,
tierPosition: 2,
colors: ['default', 'black', 'green', 'red', 'white'],
defaultColor: 'default',
},
mewtwo: {
name: 'Mewtwo',
id: 10,
tierPosition: 7,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
ness: {
name: 'Ness',
id: 11,
tierPosition: 7,
colors: ['default', 'blue', 'green', 'yellow'],
defaultColor: 'default',
},
peach: {
name: 'Peach',
id: 12,
tierPosition: 3,
colors: ['default', 'daisy', 'blue', 'green', 'white'],
defaultColor: 'default',
},
pichu: {
name: 'Pichu',
id: 24,
tierPosition: 8,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
pikachu: {
name: 'Pikachu',
id: 13,
tierPosition: 4,
colors: ['default', 'blue', 'green', 'red'],
defaultColor: 'default',
},
jigglypuff: {
name: 'Jigglypuff',
id: 15,
tierPosition: 3,
colors: ['default', 'crown', 'blue', 'green', 'red'],
defaultColor: 'default',
},
roy: {
name: 'Roy',
id: 23,
tierPosition: 7,
colors: ['default', 'blue', 'green', 'red', 'yellow'],
defaultColor: 'default',
},
samus: {
name: 'Samus',
id: 16,
tierPosition: 4,
colors: ['default', 'blue', 'green', 'pink', 'black'],
defaultColor: 'default',
},
sheik: {
name: 'Sheik',
id: 19,
tierPosition: 2,
colors: ['default', 'black', 'blue', 'green', 'red'],
defaultColor: 'default',
},
yoshi: {
name: 'Yoshi',
id: 17,
tierPosition: 5,
colors: ['green', 'blue', 'light blue', 'pink', 'red', 'yellow'],
defaultColor: 'green',
},
youngLink: {
name: 'Young Link',
id: 21,
tierPosition: 6,
colors: ['green', 'black', 'blue', 'red', 'white'],
defaultColor: 'green',
},
zelda: {
name: 'Zelda',
id: 18,
tierPosition: 7,
colors: ['default', 'blue', 'green', 'red', 'white'],
defaultColor: 'default',
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment