├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── autodocs.py │ └── autodocs.yml ├── .gitignore ├── README.md ├── a-font-handler.lua ├── a-supporters.lua ├── a-utils.lua ├── anims.lua ├── dialog.lua ├── hud.lua ├── images ├── char-select-logo-big.png ├── char-select-logo-small.png ├── menu-preview.png └── open-source.png ├── main.lua ├── moveset.lua ├── palettes.lua ├── sound ├── 00_waluigi_jump_hoo.aiff ├── 00_waluigi_waaaooow.aiff ├── 01_waluigi_hoohoo.aiff ├── 01_waluigi_jump_wah.aiff ├── 02_waluigi_panting.aiff ├── 02_waluigi_yah.aiff ├── 03_waluigi_dying.aiff ├── 03_waluigi_haha.aiff ├── 04_waluigi_on_fire.aiff ├── 04_waluigi_yahoo.aiff ├── 05_waluigi_uh.aiff ├── 05_waluigi_uh2.aiff ├── 06_waluigi_coughing.aiff ├── 06_waluigi_hrmm.aiff ├── 07_waluigi_its_a_me_mario.aiff ├── 07_waluigi_wah2.aiff ├── 08_waluigi_punch_yah.aiff ├── 08_waluigi_whoa.aiff ├── 09_waluigi_eeuh.aiff ├── 09_waluigi_punch_hoo.aiff ├── 0A_waluigi_attacked.aiff ├── 0A_waluigi_mama_mia.aiff ├── 0B_waluigi_okey_dokey.aiff ├── 0B_waluigi_ooof.aiff ├── 0C_waluigi_drowning.aiff ├── 0C_waluigi_here_we_go.aiff ├── 0D_waluigi_thank_you_playing_my_game.aiff ├── 0D_waluigi_yawning.aiff ├── 0E_waluigi_snoring1.aiff ├── 0F_waluigi_snoring2.aiff ├── 10_waluigi_doh.aiff ├── 11_waluigi_game_over.aiff ├── 12_waluigi_hello.aiff ├── 13_waluigi_press_start_to_play.aiff ├── 14_waluigi_twirl_bounce.aiff ├── 15_waluigi_snoring3.aiff ├── 16_waluigi_so_longa_bowser.aiff ├── 17_waluigi_tired.aiff ├── 18_waluigi_waha.aiff ├── 19_waluigi_yippee.aiff ├── 1A_waluigi_lets_a_go.aiff ├── char-select-dial-wind.ogg └── char-select-menu-theme.ogg ├── textures ├── char-select-album-back.png ├── char-select-album-front.png ├── char-select-album-overlay.png ├── char-select-category.png ├── char-select-caution-tape.png ├── char-select-cd-layer1.png ├── char-select-cd-layer2.png ├── char-select-cd-layer3.png ├── char-select-cd-layer4.png ├── char-select-custom-course-bottom.png ├── char-select-custom-course-top.png ├── char-select-custom-meter-left.png ├── char-select-custom-meter-pie1.png ├── char-select-custom-meter-pie2.png ├── char-select-custom-meter-pie3.png ├── char-select-custom-meter-pie4.png ├── char-select-custom-meter-pie5.png ├── char-select-custom-meter-pie6.png ├── char-select-custom-meter-pie7.png ├── char-select-custom-meter-pie8.png ├── char-select-custom-meter-right.png ├── char-select-font-brick.png ├── char-select-font-characteristic.png ├── char-select-graffiti-default.png ├── char-select-graffiti-luigi.png ├── char-select-graffiti-mario.png ├── char-select-graffiti-toad.png ├── char-select-graffiti-waluigi.png ├── char-select-graffiti-wario.png ├── char-select-icon-signs.png ├── char-select-list-button.png ├── char-select-logo.png ├── char-select-luigi-meter-left.png ├── char-select-luigi-meter-right.png ├── char-select-nameplate.png ├── char-select-options-tv.png ├── char-select-palette-bucket.png ├── char-select-record.png ├── char-select-toad-meter-left.png ├── char-select-toad-meter-right.png ├── char-select-triangle.png ├── char-select-wall-left.png ├── char-select-wall-right.png ├── char-select-waluigi-meter-left.png ├── char-select-waluigi-meter-right.png ├── char-select-wario-meter-left.png └── char-select-wario-meter-right.png ├── voice.lua └── z-api.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/autodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/.github/workflows/autodocs.py -------------------------------------------------------------------------------- /.github/workflows/autodocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/.github/workflows/autodocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/README.md -------------------------------------------------------------------------------- /a-font-handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/a-font-handler.lua -------------------------------------------------------------------------------- /a-supporters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/a-supporters.lua -------------------------------------------------------------------------------- /a-utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/a-utils.lua -------------------------------------------------------------------------------- /anims.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/anims.lua -------------------------------------------------------------------------------- /dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/dialog.lua -------------------------------------------------------------------------------- /hud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/hud.lua -------------------------------------------------------------------------------- /images/char-select-logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/images/char-select-logo-big.png -------------------------------------------------------------------------------- /images/char-select-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/images/char-select-logo-small.png -------------------------------------------------------------------------------- /images/menu-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/images/menu-preview.png -------------------------------------------------------------------------------- /images/open-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/images/open-source.png -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/main.lua -------------------------------------------------------------------------------- /moveset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/moveset.lua -------------------------------------------------------------------------------- /palettes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/palettes.lua -------------------------------------------------------------------------------- /sound/00_waluigi_jump_hoo.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/00_waluigi_jump_hoo.aiff -------------------------------------------------------------------------------- /sound/00_waluigi_waaaooow.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/00_waluigi_waaaooow.aiff -------------------------------------------------------------------------------- /sound/01_waluigi_hoohoo.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/01_waluigi_hoohoo.aiff -------------------------------------------------------------------------------- /sound/01_waluigi_jump_wah.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/01_waluigi_jump_wah.aiff -------------------------------------------------------------------------------- /sound/02_waluigi_panting.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/02_waluigi_panting.aiff -------------------------------------------------------------------------------- /sound/02_waluigi_yah.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/02_waluigi_yah.aiff -------------------------------------------------------------------------------- /sound/03_waluigi_dying.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/03_waluigi_dying.aiff -------------------------------------------------------------------------------- /sound/03_waluigi_haha.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/03_waluigi_haha.aiff -------------------------------------------------------------------------------- /sound/04_waluigi_on_fire.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/04_waluigi_on_fire.aiff -------------------------------------------------------------------------------- /sound/04_waluigi_yahoo.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/04_waluigi_yahoo.aiff -------------------------------------------------------------------------------- /sound/05_waluigi_uh.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/05_waluigi_uh.aiff -------------------------------------------------------------------------------- /sound/05_waluigi_uh2.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/05_waluigi_uh2.aiff -------------------------------------------------------------------------------- /sound/06_waluigi_coughing.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/06_waluigi_coughing.aiff -------------------------------------------------------------------------------- /sound/06_waluigi_hrmm.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/06_waluigi_hrmm.aiff -------------------------------------------------------------------------------- /sound/07_waluigi_its_a_me_mario.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/07_waluigi_its_a_me_mario.aiff -------------------------------------------------------------------------------- /sound/07_waluigi_wah2.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/07_waluigi_wah2.aiff -------------------------------------------------------------------------------- /sound/08_waluigi_punch_yah.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/08_waluigi_punch_yah.aiff -------------------------------------------------------------------------------- /sound/08_waluigi_whoa.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/08_waluigi_whoa.aiff -------------------------------------------------------------------------------- /sound/09_waluigi_eeuh.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/09_waluigi_eeuh.aiff -------------------------------------------------------------------------------- /sound/09_waluigi_punch_hoo.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/09_waluigi_punch_hoo.aiff -------------------------------------------------------------------------------- /sound/0A_waluigi_attacked.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0A_waluigi_attacked.aiff -------------------------------------------------------------------------------- /sound/0A_waluigi_mama_mia.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0A_waluigi_mama_mia.aiff -------------------------------------------------------------------------------- /sound/0B_waluigi_okey_dokey.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0B_waluigi_okey_dokey.aiff -------------------------------------------------------------------------------- /sound/0B_waluigi_ooof.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0B_waluigi_ooof.aiff -------------------------------------------------------------------------------- /sound/0C_waluigi_drowning.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0C_waluigi_drowning.aiff -------------------------------------------------------------------------------- /sound/0C_waluigi_here_we_go.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0C_waluigi_here_we_go.aiff -------------------------------------------------------------------------------- /sound/0D_waluigi_thank_you_playing_my_game.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0D_waluigi_thank_you_playing_my_game.aiff -------------------------------------------------------------------------------- /sound/0D_waluigi_yawning.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0D_waluigi_yawning.aiff -------------------------------------------------------------------------------- /sound/0E_waluigi_snoring1.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0E_waluigi_snoring1.aiff -------------------------------------------------------------------------------- /sound/0F_waluigi_snoring2.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/0F_waluigi_snoring2.aiff -------------------------------------------------------------------------------- /sound/10_waluigi_doh.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/10_waluigi_doh.aiff -------------------------------------------------------------------------------- /sound/11_waluigi_game_over.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/11_waluigi_game_over.aiff -------------------------------------------------------------------------------- /sound/12_waluigi_hello.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/12_waluigi_hello.aiff -------------------------------------------------------------------------------- /sound/13_waluigi_press_start_to_play.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/13_waluigi_press_start_to_play.aiff -------------------------------------------------------------------------------- /sound/14_waluigi_twirl_bounce.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/14_waluigi_twirl_bounce.aiff -------------------------------------------------------------------------------- /sound/15_waluigi_snoring3.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/15_waluigi_snoring3.aiff -------------------------------------------------------------------------------- /sound/16_waluigi_so_longa_bowser.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/16_waluigi_so_longa_bowser.aiff -------------------------------------------------------------------------------- /sound/17_waluigi_tired.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/17_waluigi_tired.aiff -------------------------------------------------------------------------------- /sound/18_waluigi_waha.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/18_waluigi_waha.aiff -------------------------------------------------------------------------------- /sound/19_waluigi_yippee.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/19_waluigi_yippee.aiff -------------------------------------------------------------------------------- /sound/1A_waluigi_lets_a_go.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/1A_waluigi_lets_a_go.aiff -------------------------------------------------------------------------------- /sound/char-select-dial-wind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/char-select-dial-wind.ogg -------------------------------------------------------------------------------- /sound/char-select-menu-theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/sound/char-select-menu-theme.ogg -------------------------------------------------------------------------------- /textures/char-select-album-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-album-back.png -------------------------------------------------------------------------------- /textures/char-select-album-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-album-front.png -------------------------------------------------------------------------------- /textures/char-select-album-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-album-overlay.png -------------------------------------------------------------------------------- /textures/char-select-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-category.png -------------------------------------------------------------------------------- /textures/char-select-caution-tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-caution-tape.png -------------------------------------------------------------------------------- /textures/char-select-cd-layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-cd-layer1.png -------------------------------------------------------------------------------- /textures/char-select-cd-layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-cd-layer2.png -------------------------------------------------------------------------------- /textures/char-select-cd-layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-cd-layer3.png -------------------------------------------------------------------------------- /textures/char-select-cd-layer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-cd-layer4.png -------------------------------------------------------------------------------- /textures/char-select-custom-course-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-course-bottom.png -------------------------------------------------------------------------------- /textures/char-select-custom-course-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-course-top.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-left.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie1.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie2.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie3.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie4.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie5.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie6.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie7.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-pie8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-pie8.png -------------------------------------------------------------------------------- /textures/char-select-custom-meter-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-custom-meter-right.png -------------------------------------------------------------------------------- /textures/char-select-font-brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-font-brick.png -------------------------------------------------------------------------------- /textures/char-select-font-characteristic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-font-characteristic.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-default.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-luigi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-luigi.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-mario.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-toad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-toad.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-waluigi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-waluigi.png -------------------------------------------------------------------------------- /textures/char-select-graffiti-wario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-graffiti-wario.png -------------------------------------------------------------------------------- /textures/char-select-icon-signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-icon-signs.png -------------------------------------------------------------------------------- /textures/char-select-list-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-list-button.png -------------------------------------------------------------------------------- /textures/char-select-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-logo.png -------------------------------------------------------------------------------- /textures/char-select-luigi-meter-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-luigi-meter-left.png -------------------------------------------------------------------------------- /textures/char-select-luigi-meter-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-luigi-meter-right.png -------------------------------------------------------------------------------- /textures/char-select-nameplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-nameplate.png -------------------------------------------------------------------------------- /textures/char-select-options-tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-options-tv.png -------------------------------------------------------------------------------- /textures/char-select-palette-bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-palette-bucket.png -------------------------------------------------------------------------------- /textures/char-select-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-record.png -------------------------------------------------------------------------------- /textures/char-select-toad-meter-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-toad-meter-left.png -------------------------------------------------------------------------------- /textures/char-select-toad-meter-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-toad-meter-right.png -------------------------------------------------------------------------------- /textures/char-select-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-triangle.png -------------------------------------------------------------------------------- /textures/char-select-wall-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-wall-left.png -------------------------------------------------------------------------------- /textures/char-select-wall-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-wall-right.png -------------------------------------------------------------------------------- /textures/char-select-waluigi-meter-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-waluigi-meter-left.png -------------------------------------------------------------------------------- /textures/char-select-waluigi-meter-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-waluigi-meter-right.png -------------------------------------------------------------------------------- /textures/char-select-wario-meter-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-wario-meter-left.png -------------------------------------------------------------------------------- /textures/char-select-wario-meter-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/textures/char-select-wario-meter-right.png -------------------------------------------------------------------------------- /voice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/voice.lua -------------------------------------------------------------------------------- /z-api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Squishy6094/character-select-coop/HEAD/z-api.lua --------------------------------------------------------------------------------