├── .github └── workflows │ └── deploy-ubuntu.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── accessories │ ├── eye_patch_central.png │ ├── eye_patch_left_high.png │ ├── eye_patch_left_low.png │ ├── eye_patch_octopulp_central.png │ ├── eye_patch_pupparoll.png │ ├── eye_patch_right_high.png │ ├── eye_patch_right_low.png │ ├── hook_left.png │ ├── hook_left_pupparoll.png │ ├── hook_right.png │ ├── hook_right_pupparoll.png │ ├── large_wooden_leg.png │ └── small_wooden_leg.png ├── asteroids │ ├── asteroid0.png │ ├── asteroid1.png │ ├── asteroid10.png │ ├── asteroid11.png │ ├── asteroid12.png │ ├── asteroid13.png │ ├── asteroid14.png │ ├── asteroid15.png │ ├── asteroid16.png │ ├── asteroid17.png │ ├── asteroid18.png │ ├── asteroid19.png │ ├── asteroid2.png │ ├── asteroid20.png │ ├── asteroid21.png │ ├── asteroid22.png │ ├── asteroid23.png │ ├── asteroid24.png │ ├── asteroid25.png │ ├── asteroid26.png │ ├── asteroid27.png │ ├── asteroid28.png │ ├── asteroid29.png │ ├── asteroid3.png │ ├── asteroid4.png │ ├── asteroid5.png │ ├── asteroid6.png │ ├── asteroid7.png │ ├── asteroid8.png │ └── asteroid9.png ├── beard │ ├── beard1.png │ ├── beard2.png │ ├── beard3.png │ ├── beard4.png │ ├── beard5.png │ ├── octobeard1.png │ └── octobeard2.png ├── body │ ├── mask_normal0.png │ ├── mask_normal10.png │ ├── mask_normal12.png │ ├── mask_normal3.png │ ├── mask_normal5.png │ ├── mask_normal7.png │ ├── mask_octopulp0.png │ ├── mask_octopulp10.png │ ├── mask_octopulp12.png │ ├── mask_octopulp3.png │ ├── mask_octopulp5.png │ ├── mask_octopulp7.png │ ├── mask_polpett0.png │ ├── mask_polpett10.png │ ├── mask_polpett12.png │ ├── mask_polpett3.png │ ├── mask_polpett5.png │ ├── mask_polpett7.png │ ├── mask_pupparoll10.png │ ├── mask_pupparoll12.png │ ├── mask_pupparoll7.png │ ├── normal0.png │ ├── normal10.png │ ├── normal12.png │ ├── normal3.png │ ├── normal5.png │ ├── normal7.png │ ├── octopulp0.png │ ├── octopulp10.png │ ├── octopulp12.png │ ├── octopulp3.png │ ├── octopulp5.png │ ├── octopulp7.png │ ├── pupparoll10.png │ ├── pupparoll12.png │ ├── pupparoll7.png │ ├── yardalaim0.png │ ├── yardalaim10.png │ ├── yardalaim12.png │ ├── yardalaim3.png │ ├── yardalaim5.png │ └── yardalaim7.png ├── data │ ├── planets_data.json │ ├── players_data.json │ ├── stream_data.json │ └── teams_data.json ├── engine │ ├── jester_double.png │ ├── jester_quadruple.png │ ├── pincher_double.png │ ├── pincher_single.png │ ├── pincher_triple.png │ ├── shuttle_double.png │ ├── shuttle_single.png │ └── shuttle_triple.png ├── game │ ├── away_close_shot_mask.png │ ├── away_impossible_shot_mask.png │ ├── away_long_shot_mask.png │ ├── away_medium_shot_mask.png │ ├── home_close_shot_mask.png │ ├── home_impossible_shot_mask.png │ ├── home_long_shot_mask.png │ ├── home_medium_shot_mask.png │ ├── left_shot.gif │ ├── pitch_ball.png │ ├── pitch_classic.png │ ├── pitch_fancy.png │ ├── pitch_planet.png │ ├── right_shot.gif │ └── spinning_ball.gif ├── hair │ ├── hair1.png │ ├── hair10.png │ ├── hair2.png │ ├── hair3.png │ ├── hair4.png │ ├── hair5.png │ ├── hair6.png │ ├── hair7.png │ ├── hair8.png │ └── hair9.png ├── hat │ ├── bandana.png │ ├── classic.png │ ├── hipster.png │ ├── hipsterblue.png │ ├── hipsterslim.png │ ├── infernal.png │ ├── mask.png │ ├── maskgaldari.png │ ├── maskoctopulp1.png │ ├── maskoctopulp2.png │ ├── maskpolpett.png │ ├── maskpupparoll.png │ └── maskyardalaim.png ├── head │ ├── .DS_Store │ ├── gald1.png │ ├── gald2.png │ ├── human1.png │ ├── human2.png │ ├── juppa1.png │ ├── juppa2.png │ ├── mask_gald1.png │ ├── mask_gald2.png │ ├── mask_human1.png │ ├── mask_human2.png │ ├── mask_juppa1.png │ ├── mask_juppa2.png │ ├── mask_octopulp1.png │ ├── mask_octopulp2.png │ ├── mask_polpett1.png │ ├── mask_polpett2.png │ ├── mask_pupparoll1.png │ ├── mask_pupparoll2.png │ ├── mask_yardalaim1.png │ ├── mask_yardalaim2.png │ ├── octopulp1.png │ ├── octopulp2.png │ ├── polpett1.png │ ├── polpett2.png │ ├── pupparoll1.png │ ├── pupparoll2.png │ ├── yardalaim1.png │ └── yardalaim2.png ├── hull │ ├── jester_standard.png │ ├── mask_jester_standard.png │ ├── mask_pincher_large.png │ ├── mask_pincher_standard.png │ ├── mask_shuttle_large.png │ ├── mask_shuttle_small.png │ ├── mask_shuttle_standard.png │ ├── pincher_large.png │ ├── pincher_standard.png │ ├── shipyard_jester.png │ ├── shipyard_pincher.png │ ├── shipyard_shuttle.png │ ├── shuttle_large.png │ ├── shuttle_small.png │ └── shuttle_standard.png ├── legs │ ├── mask_normal0.png │ ├── mask_normal1.png │ ├── mask_normal11.png │ ├── mask_normal13.png │ ├── mask_normal2.png │ ├── mask_normal4.png │ ├── mask_normal6.png │ ├── mask_normal7.png │ ├── mask_normal8.png │ ├── mask_normal9.png │ ├── mask_octopulp0.png │ ├── mask_octopulp1.png │ ├── mask_octopulp11.png │ ├── mask_octopulp13.png │ ├── mask_octopulp2.png │ ├── mask_octopulp4.png │ ├── mask_octopulp6.png │ ├── mask_octopulp7.png │ ├── mask_octopulp8.png │ ├── mask_octopulp9.png │ ├── mask_polpett0.png │ ├── mask_polpett1.png │ ├── mask_polpett11.png │ ├── mask_polpett13.png │ ├── mask_polpett2.png │ ├── mask_polpett4.png │ ├── mask_polpett6.png │ ├── mask_polpett7.png │ ├── mask_polpett8.png │ ├── mask_polpett9.png │ ├── mask_pupparoll11.png │ ├── mask_pupparoll13.png │ ├── mask_pupparoll7.png │ ├── mask_pupparoll8.png │ ├── mask_pupparoll9.png │ ├── normal0.png │ ├── normal1.png │ ├── normal11.png │ ├── normal13.png │ ├── normal2.png │ ├── normal4.png │ ├── normal6.png │ ├── normal7.png │ ├── normal8.png │ ├── normal9.png │ ├── octopulp0.png │ ├── octopulp1.png │ ├── octopulp11.png │ ├── octopulp13.png │ ├── octopulp2.png │ ├── octopulp4.png │ ├── octopulp6.png │ ├── octopulp7.png │ ├── octopulp8.png │ ├── octopulp9.png │ ├── polpett0.png │ ├── polpett1.png │ ├── polpett11.png │ ├── polpett13.png │ ├── polpett2.png │ ├── polpett4.png │ ├── polpett6.png │ ├── polpett7.png │ ├── polpett8.png │ ├── polpett9.png │ ├── pupparoll11.png │ ├── pupparoll13.png │ ├── pupparoll7.png │ ├── pupparoll8.png │ └── pupparoll9.png ├── planets │ ├── background.png │ ├── blackhole_full.gif │ ├── blackhole_zoomout.gif │ ├── deimos_full.gif │ ├── deimos_zoomout.gif │ ├── earth_full.gif │ ├── earth_zoomout.gif │ ├── galaxy.gif │ ├── gas_full.gif │ ├── gas_zoomout.gif │ ├── ice_full.gif │ ├── ice_zoomout.gif │ ├── lava_full.gif │ ├── lava_zoomout.gif │ ├── phobos_full.gif │ ├── phobos_zoomout.gif │ ├── proxima_full.gif │ ├── proxima_zoomout.gif │ ├── redgreen_full.gif │ ├── redgreen_zoomout.gif │ ├── ring_full.gif │ ├── ring_zoomout.gif │ ├── rocky_full.gif │ ├── rocky_zoomout.gif │ ├── sol_full.gif │ ├── sol_zoomout.gif │ ├── travelling_background.png │ ├── venom_full.gif │ ├── venom_zoomout.gif │ ├── venom_zoomout2.gif │ ├── water_full.gif │ ├── water_zoomout.gif │ ├── weird_full.gif │ └── weird_zoomout.gif ├── portal │ ├── portal_blue.gif │ ├── portal_pink.gif │ └── portal_red.gif ├── shirt │ ├── classic0.png │ ├── classic10.png │ ├── classic12.png │ ├── classic3.png │ ├── classic5.png │ ├── classic7.png │ ├── fancy0.png │ ├── fancy10.png │ ├── fancy12.png │ ├── fancy3.png │ ├── fancy5.png │ ├── fancy7.png │ ├── gilet0.png │ ├── gilet10.png │ ├── gilet12.png │ ├── gilet3.png │ ├── gilet5.png │ ├── gilet7.png │ ├── horizontal0.png │ ├── horizontal10.png │ ├── horizontal12.png │ ├── horizontal3.png │ ├── horizontal5.png │ ├── horizontal7.png │ ├── mask0.png │ ├── mask10.png │ ├── mask12.png │ ├── mask3.png │ ├── mask5.png │ ├── mask7.png │ ├── pirate0.png │ ├── pirate10.png │ ├── pirate12.png │ ├── pirate3.png │ ├── pirate5.png │ ├── pirate7.png │ ├── piratealt0.png │ ├── piratealt10.png │ ├── piratealt12.png │ ├── piratealt3.png │ ├── piratealt5.png │ ├── piratealt7.png │ ├── pirategald0.png │ ├── pirategald10.png │ ├── pirategald12.png │ ├── pirategald3.png │ ├── pirategald5.png │ ├── pirategald7.png │ ├── stripe0.png │ ├── stripe10.png │ ├── stripe12.png │ ├── stripe3.png │ ├── stripe5.png │ └── stripe7.png ├── shoes │ ├── classic0.png │ └── classic7.png ├── shooter │ ├── jester_double.png │ ├── jester_quadruple.png │ ├── pincher_double1.png │ ├── pincher_double2.png │ ├── pincher_quadruple1.png │ ├── pincher_quadruple2.png │ ├── shuttle_single0.png │ ├── shuttle_single1.png │ ├── shuttle_single2.png │ ├── shuttle_triple0.png │ ├── shuttle_triple1.png │ └── shuttle_triple2.png ├── shorts │ ├── classic0.png │ ├── classic10.png │ ├── classic3.png │ ├── classic7.png │ ├── classic9.png │ ├── fancy0.png │ ├── fancy10.png │ ├── fancy3.png │ ├── fancy7.png │ ├── fancy9.png │ ├── gilet0.png │ ├── gilet10.png │ ├── gilet3.png │ ├── gilet7.png │ ├── gilet9.png │ ├── horizontal0.png │ ├── horizontal10.png │ ├── horizontal3.png │ ├── horizontal7.png │ ├── horizontal9.png │ ├── mask_large.png │ ├── mask_pupparoll.png │ ├── mask_slim.png │ ├── pirate0.png │ ├── pirate10.png │ ├── pirate3.png │ ├── pirate7.png │ ├── pirate9.png │ ├── piratealt0.png │ ├── piratealt10.png │ ├── piratealt3.png │ ├── piratealt7.png │ ├── piratealt9.png │ ├── pirategald0.png │ ├── pirategald10.png │ ├── pirategald3.png │ ├── pirategald7.png │ ├── pirategald9.png │ ├── pupparoll.png │ ├── stripe0.png │ ├── stripe10.png │ ├── stripe3.png │ ├── stripe7.png │ └── stripe9.png ├── space_adventure │ ├── asteroid_big0.png │ ├── asteroid_big1.png │ ├── asteroid_big2.png │ ├── asteroid_huge0.png │ ├── asteroid_huge1.png │ ├── asteroid_huge2.png │ ├── asteroid_small0.png │ ├── asteroid_small1.png │ └── asteroid_small2.png ├── storage │ ├── jester_single.png │ ├── mask_jester_single.png │ ├── mask_pincher_single1.png │ ├── mask_pincher_single2.png │ ├── mask_shuttle_double0.png │ ├── mask_shuttle_double1.png │ ├── mask_shuttle_double2.png │ ├── mask_shuttle_single0.png │ ├── mask_shuttle_single1.png │ ├── mask_shuttle_single2.png │ ├── pincher_single1.png │ ├── pincher_single2.png │ ├── shuttle_double0.png │ ├── shuttle_double1.png │ ├── shuttle_double2.png │ ├── shuttle_single0.png │ ├── shuttle_single1.png │ └── shuttle_single2.png └── treasure │ └── treasure.gif ├── demo └── demo_v1.0.18.mp4 ├── src ├── app.rs ├── audio │ ├── mod.rs │ └── music_player.rs ├── crossterm_event_handler.rs ├── game_engine │ ├── action.rs │ ├── brawl.rs │ ├── constants.rs │ ├── end_of_quarter.rs │ ├── game.rs │ ├── isolation.rs │ ├── jump_ball.rs │ ├── mod.rs │ ├── off_the_screen.rs │ ├── pick_and_roll.rs │ ├── post.rs │ ├── rebound.rs │ ├── shot.rs │ ├── start_of_quarter.rs │ ├── substitution.rs │ ├── tactic.rs │ ├── timer.rs │ └── types.rs ├── image │ ├── color_map.rs │ ├── components.rs │ ├── game.rs │ ├── mod.rs │ ├── player.rs │ ├── spaceship.rs │ ├── types.rs │ └── utils.rs ├── lib.rs ├── main.rs ├── network │ ├── challenge.rs │ ├── constants.rs │ ├── handler.rs │ ├── mod.rs │ ├── network_callback.rs │ ├── trade.rs │ └── types.rs ├── relayer.rs ├── space_adventure │ ├── asteroid.rs │ ├── collector.rs │ ├── collisions.rs │ ├── constants.rs │ ├── fragment.rs │ ├── mod.rs │ ├── networking.rs │ ├── particle.rs │ ├── projectile.rs │ ├── space.rs │ ├── space_callback.rs │ ├── spaceship.rs │ ├── traits.rs │ ├── utils.rs │ └── visual_effects.rs ├── ssh │ ├── channel.rs │ ├── client.rs │ ├── mod.rs │ ├── server.rs │ └── utils.rs ├── store.rs ├── tick_event_handler.rs ├── tui.rs ├── types.rs ├── ui │ ├── big_numbers.rs │ ├── button.rs │ ├── clickable_list.rs │ ├── clickable_table.rs │ ├── constants.rs │ ├── galaxy_panel.rs │ ├── game_panel.rs │ ├── gif_map.rs │ ├── hover_text_line.rs │ ├── hover_text_span.rs │ ├── mod.rs │ ├── my_team_panel.rs │ ├── new_team_screen.rs │ ├── player_panel.rs │ ├── popup_message.rs │ ├── space_screen.rs │ ├── splash_screen.rs │ ├── swarm_panel.rs │ ├── team_panel.rs │ ├── traits.rs │ ├── ui.rs │ ├── ui_callback.rs │ ├── ui_frame.rs │ ├── utils.rs │ └── widgets.rs └── world │ ├── constants.rs │ ├── honours.rs │ ├── jersey.rs │ ├── kartoffel.rs │ ├── mod.rs │ ├── planet.rs │ ├── player.rs │ ├── position.rs │ ├── resources.rs │ ├── role.rs │ ├── skill.rs │ ├── spaceship.rs │ ├── team.rs │ ├── types.rs │ ├── utils.rs │ └── world.rs └── tests ├── asteroid_images.png ├── pitchball_image.png ├── pitchclassic_image.png ├── pitchfancy_image.png ├── pitchplanet_image.png ├── player_image_Galdari.png ├── player_image_Human.png ├── player_image_Juppa.png ├── player_image_Octopulp.png ├── player_image_Polpett.png ├── player_image_Pupparoll.png ├── player_image_Yardalaim.png ├── player_image_galdari_with_jersey.png ├── player_image_human_with_jersey.png ├── player_image_juppa_with_jersey.png ├── player_image_octopulp_with_jersey.png ├── player_image_polpett_with_jersey.png ├── player_image_pupparoll_with_jersey.png ├── player_image_yardalaim_with_jersey.png ├── spaceship_image_bresci.png ├── spaceship_image_cafiero.png ├── spaceship_image_ibarruri.png ├── spaceship_image_milwaukee.png ├── spaceship_image_orwell.png ├── spaceship_image_pincher.png ├── spaceship_image_ragnarok.png ├── spaceship_image_rivolta.png └── spaceship_image_yukawa.png /.github/workflows/deploy-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/.github/workflows/deploy-ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/README.md -------------------------------------------------------------------------------- /assets/accessories/eye_patch_central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_central.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_left_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_left_high.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_left_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_left_low.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_octopulp_central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_octopulp_central.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_pupparoll.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_right_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_right_high.png -------------------------------------------------------------------------------- /assets/accessories/eye_patch_right_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/eye_patch_right_low.png -------------------------------------------------------------------------------- /assets/accessories/hook_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/hook_left.png -------------------------------------------------------------------------------- /assets/accessories/hook_left_pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/hook_left_pupparoll.png -------------------------------------------------------------------------------- /assets/accessories/hook_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/hook_right.png -------------------------------------------------------------------------------- /assets/accessories/hook_right_pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/hook_right_pupparoll.png -------------------------------------------------------------------------------- /assets/accessories/large_wooden_leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/large_wooden_leg.png -------------------------------------------------------------------------------- /assets/accessories/small_wooden_leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/accessories/small_wooden_leg.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid0.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid1.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid10.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid11.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid12.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid13.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid14.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid15.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid16.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid17.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid18.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid19.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid2.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid20.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid21.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid22.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid23.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid24.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid25.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid26.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid27.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid28.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid29.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid3.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid4.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid5.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid6.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid7.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid8.png -------------------------------------------------------------------------------- /assets/asteroids/asteroid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/asteroids/asteroid9.png -------------------------------------------------------------------------------- /assets/beard/beard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/beard1.png -------------------------------------------------------------------------------- /assets/beard/beard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/beard2.png -------------------------------------------------------------------------------- /assets/beard/beard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/beard3.png -------------------------------------------------------------------------------- /assets/beard/beard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/beard4.png -------------------------------------------------------------------------------- /assets/beard/beard5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/beard5.png -------------------------------------------------------------------------------- /assets/beard/octobeard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/octobeard1.png -------------------------------------------------------------------------------- /assets/beard/octobeard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/beard/octobeard2.png -------------------------------------------------------------------------------- /assets/body/mask_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal0.png -------------------------------------------------------------------------------- /assets/body/mask_normal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal10.png -------------------------------------------------------------------------------- /assets/body/mask_normal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal12.png -------------------------------------------------------------------------------- /assets/body/mask_normal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal3.png -------------------------------------------------------------------------------- /assets/body/mask_normal5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal5.png -------------------------------------------------------------------------------- /assets/body/mask_normal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_normal7.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp0.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp10.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp12.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp3.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp5.png -------------------------------------------------------------------------------- /assets/body/mask_octopulp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_octopulp7.png -------------------------------------------------------------------------------- /assets/body/mask_polpett0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett0.png -------------------------------------------------------------------------------- /assets/body/mask_polpett10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett10.png -------------------------------------------------------------------------------- /assets/body/mask_polpett12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett12.png -------------------------------------------------------------------------------- /assets/body/mask_polpett3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett3.png -------------------------------------------------------------------------------- /assets/body/mask_polpett5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett5.png -------------------------------------------------------------------------------- /assets/body/mask_polpett7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_polpett7.png -------------------------------------------------------------------------------- /assets/body/mask_pupparoll10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_pupparoll10.png -------------------------------------------------------------------------------- /assets/body/mask_pupparoll12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_pupparoll12.png -------------------------------------------------------------------------------- /assets/body/mask_pupparoll7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/mask_pupparoll7.png -------------------------------------------------------------------------------- /assets/body/normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal0.png -------------------------------------------------------------------------------- /assets/body/normal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal10.png -------------------------------------------------------------------------------- /assets/body/normal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal12.png -------------------------------------------------------------------------------- /assets/body/normal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal3.png -------------------------------------------------------------------------------- /assets/body/normal5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal5.png -------------------------------------------------------------------------------- /assets/body/normal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/normal7.png -------------------------------------------------------------------------------- /assets/body/octopulp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp0.png -------------------------------------------------------------------------------- /assets/body/octopulp10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp10.png -------------------------------------------------------------------------------- /assets/body/octopulp12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp12.png -------------------------------------------------------------------------------- /assets/body/octopulp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp3.png -------------------------------------------------------------------------------- /assets/body/octopulp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp5.png -------------------------------------------------------------------------------- /assets/body/octopulp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/octopulp7.png -------------------------------------------------------------------------------- /assets/body/pupparoll10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/pupparoll10.png -------------------------------------------------------------------------------- /assets/body/pupparoll12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/pupparoll12.png -------------------------------------------------------------------------------- /assets/body/pupparoll7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/pupparoll7.png -------------------------------------------------------------------------------- /assets/body/yardalaim0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim0.png -------------------------------------------------------------------------------- /assets/body/yardalaim10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim10.png -------------------------------------------------------------------------------- /assets/body/yardalaim12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim12.png -------------------------------------------------------------------------------- /assets/body/yardalaim3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim3.png -------------------------------------------------------------------------------- /assets/body/yardalaim5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim5.png -------------------------------------------------------------------------------- /assets/body/yardalaim7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/body/yardalaim7.png -------------------------------------------------------------------------------- /assets/data/planets_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/data/planets_data.json -------------------------------------------------------------------------------- /assets/data/players_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/data/players_data.json -------------------------------------------------------------------------------- /assets/data/stream_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/data/stream_data.json -------------------------------------------------------------------------------- /assets/data/teams_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/data/teams_data.json -------------------------------------------------------------------------------- /assets/engine/jester_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/jester_double.png -------------------------------------------------------------------------------- /assets/engine/jester_quadruple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/jester_quadruple.png -------------------------------------------------------------------------------- /assets/engine/pincher_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/pincher_double.png -------------------------------------------------------------------------------- /assets/engine/pincher_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/pincher_single.png -------------------------------------------------------------------------------- /assets/engine/pincher_triple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/pincher_triple.png -------------------------------------------------------------------------------- /assets/engine/shuttle_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/shuttle_double.png -------------------------------------------------------------------------------- /assets/engine/shuttle_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/shuttle_single.png -------------------------------------------------------------------------------- /assets/engine/shuttle_triple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/engine/shuttle_triple.png -------------------------------------------------------------------------------- /assets/game/away_close_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/away_close_shot_mask.png -------------------------------------------------------------------------------- /assets/game/away_impossible_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/away_impossible_shot_mask.png -------------------------------------------------------------------------------- /assets/game/away_long_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/away_long_shot_mask.png -------------------------------------------------------------------------------- /assets/game/away_medium_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/away_medium_shot_mask.png -------------------------------------------------------------------------------- /assets/game/home_close_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/home_close_shot_mask.png -------------------------------------------------------------------------------- /assets/game/home_impossible_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/home_impossible_shot_mask.png -------------------------------------------------------------------------------- /assets/game/home_long_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/home_long_shot_mask.png -------------------------------------------------------------------------------- /assets/game/home_medium_shot_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/home_medium_shot_mask.png -------------------------------------------------------------------------------- /assets/game/left_shot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/left_shot.gif -------------------------------------------------------------------------------- /assets/game/pitch_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/pitch_ball.png -------------------------------------------------------------------------------- /assets/game/pitch_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/pitch_classic.png -------------------------------------------------------------------------------- /assets/game/pitch_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/pitch_fancy.png -------------------------------------------------------------------------------- /assets/game/pitch_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/pitch_planet.png -------------------------------------------------------------------------------- /assets/game/right_shot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/right_shot.gif -------------------------------------------------------------------------------- /assets/game/spinning_ball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/game/spinning_ball.gif -------------------------------------------------------------------------------- /assets/hair/hair1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair1.png -------------------------------------------------------------------------------- /assets/hair/hair10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair10.png -------------------------------------------------------------------------------- /assets/hair/hair2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair2.png -------------------------------------------------------------------------------- /assets/hair/hair3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair3.png -------------------------------------------------------------------------------- /assets/hair/hair4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair4.png -------------------------------------------------------------------------------- /assets/hair/hair5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair5.png -------------------------------------------------------------------------------- /assets/hair/hair6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair6.png -------------------------------------------------------------------------------- /assets/hair/hair7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair7.png -------------------------------------------------------------------------------- /assets/hair/hair8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair8.png -------------------------------------------------------------------------------- /assets/hair/hair9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hair/hair9.png -------------------------------------------------------------------------------- /assets/hat/bandana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/bandana.png -------------------------------------------------------------------------------- /assets/hat/classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/classic.png -------------------------------------------------------------------------------- /assets/hat/hipster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/hipster.png -------------------------------------------------------------------------------- /assets/hat/hipsterblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/hipsterblue.png -------------------------------------------------------------------------------- /assets/hat/hipsterslim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/hipsterslim.png -------------------------------------------------------------------------------- /assets/hat/infernal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/infernal.png -------------------------------------------------------------------------------- /assets/hat/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/mask.png -------------------------------------------------------------------------------- /assets/hat/maskgaldari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskgaldari.png -------------------------------------------------------------------------------- /assets/hat/maskoctopulp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskoctopulp1.png -------------------------------------------------------------------------------- /assets/hat/maskoctopulp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskoctopulp2.png -------------------------------------------------------------------------------- /assets/hat/maskpolpett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskpolpett.png -------------------------------------------------------------------------------- /assets/hat/maskpupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskpupparoll.png -------------------------------------------------------------------------------- /assets/hat/maskyardalaim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hat/maskyardalaim.png -------------------------------------------------------------------------------- /assets/head/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/.DS_Store -------------------------------------------------------------------------------- /assets/head/gald1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/gald1.png -------------------------------------------------------------------------------- /assets/head/gald2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/gald2.png -------------------------------------------------------------------------------- /assets/head/human1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/human1.png -------------------------------------------------------------------------------- /assets/head/human2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/human2.png -------------------------------------------------------------------------------- /assets/head/juppa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/juppa1.png -------------------------------------------------------------------------------- /assets/head/juppa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/juppa2.png -------------------------------------------------------------------------------- /assets/head/mask_gald1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_gald1.png -------------------------------------------------------------------------------- /assets/head/mask_gald2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_gald2.png -------------------------------------------------------------------------------- /assets/head/mask_human1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_human1.png -------------------------------------------------------------------------------- /assets/head/mask_human2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_human2.png -------------------------------------------------------------------------------- /assets/head/mask_juppa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_juppa1.png -------------------------------------------------------------------------------- /assets/head/mask_juppa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_juppa2.png -------------------------------------------------------------------------------- /assets/head/mask_octopulp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_octopulp1.png -------------------------------------------------------------------------------- /assets/head/mask_octopulp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_octopulp2.png -------------------------------------------------------------------------------- /assets/head/mask_polpett1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_polpett1.png -------------------------------------------------------------------------------- /assets/head/mask_polpett2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_polpett2.png -------------------------------------------------------------------------------- /assets/head/mask_pupparoll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_pupparoll1.png -------------------------------------------------------------------------------- /assets/head/mask_pupparoll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_pupparoll2.png -------------------------------------------------------------------------------- /assets/head/mask_yardalaim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_yardalaim1.png -------------------------------------------------------------------------------- /assets/head/mask_yardalaim2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/mask_yardalaim2.png -------------------------------------------------------------------------------- /assets/head/octopulp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/octopulp1.png -------------------------------------------------------------------------------- /assets/head/octopulp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/octopulp2.png -------------------------------------------------------------------------------- /assets/head/polpett1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/polpett1.png -------------------------------------------------------------------------------- /assets/head/polpett2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/polpett2.png -------------------------------------------------------------------------------- /assets/head/pupparoll1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/pupparoll1.png -------------------------------------------------------------------------------- /assets/head/pupparoll2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/pupparoll2.png -------------------------------------------------------------------------------- /assets/head/yardalaim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/yardalaim1.png -------------------------------------------------------------------------------- /assets/head/yardalaim2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/head/yardalaim2.png -------------------------------------------------------------------------------- /assets/hull/jester_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/jester_standard.png -------------------------------------------------------------------------------- /assets/hull/mask_jester_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_jester_standard.png -------------------------------------------------------------------------------- /assets/hull/mask_pincher_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_pincher_large.png -------------------------------------------------------------------------------- /assets/hull/mask_pincher_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_pincher_standard.png -------------------------------------------------------------------------------- /assets/hull/mask_shuttle_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_shuttle_large.png -------------------------------------------------------------------------------- /assets/hull/mask_shuttle_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_shuttle_small.png -------------------------------------------------------------------------------- /assets/hull/mask_shuttle_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/mask_shuttle_standard.png -------------------------------------------------------------------------------- /assets/hull/pincher_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/pincher_large.png -------------------------------------------------------------------------------- /assets/hull/pincher_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/pincher_standard.png -------------------------------------------------------------------------------- /assets/hull/shipyard_jester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shipyard_jester.png -------------------------------------------------------------------------------- /assets/hull/shipyard_pincher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shipyard_pincher.png -------------------------------------------------------------------------------- /assets/hull/shipyard_shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shipyard_shuttle.png -------------------------------------------------------------------------------- /assets/hull/shuttle_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shuttle_large.png -------------------------------------------------------------------------------- /assets/hull/shuttle_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shuttle_small.png -------------------------------------------------------------------------------- /assets/hull/shuttle_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/hull/shuttle_standard.png -------------------------------------------------------------------------------- /assets/legs/mask_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal0.png -------------------------------------------------------------------------------- /assets/legs/mask_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal1.png -------------------------------------------------------------------------------- /assets/legs/mask_normal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal11.png -------------------------------------------------------------------------------- /assets/legs/mask_normal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal13.png -------------------------------------------------------------------------------- /assets/legs/mask_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal2.png -------------------------------------------------------------------------------- /assets/legs/mask_normal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal4.png -------------------------------------------------------------------------------- /assets/legs/mask_normal6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal6.png -------------------------------------------------------------------------------- /assets/legs/mask_normal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal7.png -------------------------------------------------------------------------------- /assets/legs/mask_normal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal8.png -------------------------------------------------------------------------------- /assets/legs/mask_normal9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_normal9.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp0.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp1.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp11.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp13.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp2.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp4.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp6.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp7.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp8.png -------------------------------------------------------------------------------- /assets/legs/mask_octopulp9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_octopulp9.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett0.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett1.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett11.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett13.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett2.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett4.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett6.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett7.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett8.png -------------------------------------------------------------------------------- /assets/legs/mask_polpett9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_polpett9.png -------------------------------------------------------------------------------- /assets/legs/mask_pupparoll11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_pupparoll11.png -------------------------------------------------------------------------------- /assets/legs/mask_pupparoll13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_pupparoll13.png -------------------------------------------------------------------------------- /assets/legs/mask_pupparoll7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_pupparoll7.png -------------------------------------------------------------------------------- /assets/legs/mask_pupparoll8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_pupparoll8.png -------------------------------------------------------------------------------- /assets/legs/mask_pupparoll9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/mask_pupparoll9.png -------------------------------------------------------------------------------- /assets/legs/normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal0.png -------------------------------------------------------------------------------- /assets/legs/normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal1.png -------------------------------------------------------------------------------- /assets/legs/normal11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal11.png -------------------------------------------------------------------------------- /assets/legs/normal13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal13.png -------------------------------------------------------------------------------- /assets/legs/normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal2.png -------------------------------------------------------------------------------- /assets/legs/normal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal4.png -------------------------------------------------------------------------------- /assets/legs/normal6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal6.png -------------------------------------------------------------------------------- /assets/legs/normal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal7.png -------------------------------------------------------------------------------- /assets/legs/normal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal8.png -------------------------------------------------------------------------------- /assets/legs/normal9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/normal9.png -------------------------------------------------------------------------------- /assets/legs/octopulp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp0.png -------------------------------------------------------------------------------- /assets/legs/octopulp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp1.png -------------------------------------------------------------------------------- /assets/legs/octopulp11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp11.png -------------------------------------------------------------------------------- /assets/legs/octopulp13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp13.png -------------------------------------------------------------------------------- /assets/legs/octopulp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp2.png -------------------------------------------------------------------------------- /assets/legs/octopulp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp4.png -------------------------------------------------------------------------------- /assets/legs/octopulp6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp6.png -------------------------------------------------------------------------------- /assets/legs/octopulp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp7.png -------------------------------------------------------------------------------- /assets/legs/octopulp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp8.png -------------------------------------------------------------------------------- /assets/legs/octopulp9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/octopulp9.png -------------------------------------------------------------------------------- /assets/legs/polpett0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett0.png -------------------------------------------------------------------------------- /assets/legs/polpett1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett1.png -------------------------------------------------------------------------------- /assets/legs/polpett11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett11.png -------------------------------------------------------------------------------- /assets/legs/polpett13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett13.png -------------------------------------------------------------------------------- /assets/legs/polpett2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett2.png -------------------------------------------------------------------------------- /assets/legs/polpett4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett4.png -------------------------------------------------------------------------------- /assets/legs/polpett6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett6.png -------------------------------------------------------------------------------- /assets/legs/polpett7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett7.png -------------------------------------------------------------------------------- /assets/legs/polpett8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett8.png -------------------------------------------------------------------------------- /assets/legs/polpett9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/polpett9.png -------------------------------------------------------------------------------- /assets/legs/pupparoll11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/pupparoll11.png -------------------------------------------------------------------------------- /assets/legs/pupparoll13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/pupparoll13.png -------------------------------------------------------------------------------- /assets/legs/pupparoll7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/pupparoll7.png -------------------------------------------------------------------------------- /assets/legs/pupparoll8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/pupparoll8.png -------------------------------------------------------------------------------- /assets/legs/pupparoll9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/legs/pupparoll9.png -------------------------------------------------------------------------------- /assets/planets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/background.png -------------------------------------------------------------------------------- /assets/planets/blackhole_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/blackhole_full.gif -------------------------------------------------------------------------------- /assets/planets/blackhole_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/blackhole_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/deimos_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/deimos_full.gif -------------------------------------------------------------------------------- /assets/planets/deimos_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/deimos_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/earth_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/earth_full.gif -------------------------------------------------------------------------------- /assets/planets/earth_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/earth_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/galaxy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/galaxy.gif -------------------------------------------------------------------------------- /assets/planets/gas_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/gas_full.gif -------------------------------------------------------------------------------- /assets/planets/gas_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/gas_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/ice_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/ice_full.gif -------------------------------------------------------------------------------- /assets/planets/ice_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/ice_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/lava_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/lava_full.gif -------------------------------------------------------------------------------- /assets/planets/lava_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/lava_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/phobos_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/phobos_full.gif -------------------------------------------------------------------------------- /assets/planets/phobos_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/phobos_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/proxima_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/proxima_full.gif -------------------------------------------------------------------------------- /assets/planets/proxima_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/proxima_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/redgreen_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/redgreen_full.gif -------------------------------------------------------------------------------- /assets/planets/redgreen_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/redgreen_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/ring_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/ring_full.gif -------------------------------------------------------------------------------- /assets/planets/ring_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/ring_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/rocky_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/rocky_full.gif -------------------------------------------------------------------------------- /assets/planets/rocky_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/rocky_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/sol_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/sol_full.gif -------------------------------------------------------------------------------- /assets/planets/sol_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/sol_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/travelling_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/travelling_background.png -------------------------------------------------------------------------------- /assets/planets/venom_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/venom_full.gif -------------------------------------------------------------------------------- /assets/planets/venom_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/venom_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/venom_zoomout2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/venom_zoomout2.gif -------------------------------------------------------------------------------- /assets/planets/water_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/water_full.gif -------------------------------------------------------------------------------- /assets/planets/water_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/water_zoomout.gif -------------------------------------------------------------------------------- /assets/planets/weird_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/weird_full.gif -------------------------------------------------------------------------------- /assets/planets/weird_zoomout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/planets/weird_zoomout.gif -------------------------------------------------------------------------------- /assets/portal/portal_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/portal/portal_blue.gif -------------------------------------------------------------------------------- /assets/portal/portal_pink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/portal/portal_pink.gif -------------------------------------------------------------------------------- /assets/portal/portal_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/portal/portal_red.gif -------------------------------------------------------------------------------- /assets/shirt/classic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic0.png -------------------------------------------------------------------------------- /assets/shirt/classic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic10.png -------------------------------------------------------------------------------- /assets/shirt/classic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic12.png -------------------------------------------------------------------------------- /assets/shirt/classic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic3.png -------------------------------------------------------------------------------- /assets/shirt/classic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic5.png -------------------------------------------------------------------------------- /assets/shirt/classic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/classic7.png -------------------------------------------------------------------------------- /assets/shirt/fancy0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy0.png -------------------------------------------------------------------------------- /assets/shirt/fancy10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy10.png -------------------------------------------------------------------------------- /assets/shirt/fancy12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy12.png -------------------------------------------------------------------------------- /assets/shirt/fancy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy3.png -------------------------------------------------------------------------------- /assets/shirt/fancy5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy5.png -------------------------------------------------------------------------------- /assets/shirt/fancy7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/fancy7.png -------------------------------------------------------------------------------- /assets/shirt/gilet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet0.png -------------------------------------------------------------------------------- /assets/shirt/gilet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet10.png -------------------------------------------------------------------------------- /assets/shirt/gilet12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet12.png -------------------------------------------------------------------------------- /assets/shirt/gilet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet3.png -------------------------------------------------------------------------------- /assets/shirt/gilet5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet5.png -------------------------------------------------------------------------------- /assets/shirt/gilet7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/gilet7.png -------------------------------------------------------------------------------- /assets/shirt/horizontal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal0.png -------------------------------------------------------------------------------- /assets/shirt/horizontal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal10.png -------------------------------------------------------------------------------- /assets/shirt/horizontal12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal12.png -------------------------------------------------------------------------------- /assets/shirt/horizontal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal3.png -------------------------------------------------------------------------------- /assets/shirt/horizontal5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal5.png -------------------------------------------------------------------------------- /assets/shirt/horizontal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/horizontal7.png -------------------------------------------------------------------------------- /assets/shirt/mask0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask0.png -------------------------------------------------------------------------------- /assets/shirt/mask10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask10.png -------------------------------------------------------------------------------- /assets/shirt/mask12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask12.png -------------------------------------------------------------------------------- /assets/shirt/mask3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask3.png -------------------------------------------------------------------------------- /assets/shirt/mask5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask5.png -------------------------------------------------------------------------------- /assets/shirt/mask7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/mask7.png -------------------------------------------------------------------------------- /assets/shirt/pirate0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate0.png -------------------------------------------------------------------------------- /assets/shirt/pirate10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate10.png -------------------------------------------------------------------------------- /assets/shirt/pirate12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate12.png -------------------------------------------------------------------------------- /assets/shirt/pirate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate3.png -------------------------------------------------------------------------------- /assets/shirt/pirate5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate5.png -------------------------------------------------------------------------------- /assets/shirt/pirate7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirate7.png -------------------------------------------------------------------------------- /assets/shirt/piratealt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt0.png -------------------------------------------------------------------------------- /assets/shirt/piratealt10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt10.png -------------------------------------------------------------------------------- /assets/shirt/piratealt12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt12.png -------------------------------------------------------------------------------- /assets/shirt/piratealt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt3.png -------------------------------------------------------------------------------- /assets/shirt/piratealt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt5.png -------------------------------------------------------------------------------- /assets/shirt/piratealt7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/piratealt7.png -------------------------------------------------------------------------------- /assets/shirt/pirategald0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald0.png -------------------------------------------------------------------------------- /assets/shirt/pirategald10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald10.png -------------------------------------------------------------------------------- /assets/shirt/pirategald12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald12.png -------------------------------------------------------------------------------- /assets/shirt/pirategald3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald3.png -------------------------------------------------------------------------------- /assets/shirt/pirategald5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald5.png -------------------------------------------------------------------------------- /assets/shirt/pirategald7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/pirategald7.png -------------------------------------------------------------------------------- /assets/shirt/stripe0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe0.png -------------------------------------------------------------------------------- /assets/shirt/stripe10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe10.png -------------------------------------------------------------------------------- /assets/shirt/stripe12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe12.png -------------------------------------------------------------------------------- /assets/shirt/stripe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe3.png -------------------------------------------------------------------------------- /assets/shirt/stripe5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe5.png -------------------------------------------------------------------------------- /assets/shirt/stripe7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shirt/stripe7.png -------------------------------------------------------------------------------- /assets/shoes/classic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shoes/classic0.png -------------------------------------------------------------------------------- /assets/shoes/classic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shoes/classic7.png -------------------------------------------------------------------------------- /assets/shooter/jester_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/jester_double.png -------------------------------------------------------------------------------- /assets/shooter/jester_quadruple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/jester_quadruple.png -------------------------------------------------------------------------------- /assets/shooter/pincher_double1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/pincher_double1.png -------------------------------------------------------------------------------- /assets/shooter/pincher_double2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/pincher_double2.png -------------------------------------------------------------------------------- /assets/shooter/pincher_quadruple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/pincher_quadruple1.png -------------------------------------------------------------------------------- /assets/shooter/pincher_quadruple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/pincher_quadruple2.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_single0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_single0.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_single1.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_single2.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_triple0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_triple0.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_triple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_triple1.png -------------------------------------------------------------------------------- /assets/shooter/shuttle_triple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shooter/shuttle_triple2.png -------------------------------------------------------------------------------- /assets/shorts/classic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/classic0.png -------------------------------------------------------------------------------- /assets/shorts/classic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/classic10.png -------------------------------------------------------------------------------- /assets/shorts/classic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/classic3.png -------------------------------------------------------------------------------- /assets/shorts/classic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/classic7.png -------------------------------------------------------------------------------- /assets/shorts/classic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/classic9.png -------------------------------------------------------------------------------- /assets/shorts/fancy0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/fancy0.png -------------------------------------------------------------------------------- /assets/shorts/fancy10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/fancy10.png -------------------------------------------------------------------------------- /assets/shorts/fancy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/fancy3.png -------------------------------------------------------------------------------- /assets/shorts/fancy7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/fancy7.png -------------------------------------------------------------------------------- /assets/shorts/fancy9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/fancy9.png -------------------------------------------------------------------------------- /assets/shorts/gilet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/gilet0.png -------------------------------------------------------------------------------- /assets/shorts/gilet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/gilet10.png -------------------------------------------------------------------------------- /assets/shorts/gilet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/gilet3.png -------------------------------------------------------------------------------- /assets/shorts/gilet7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/gilet7.png -------------------------------------------------------------------------------- /assets/shorts/gilet9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/gilet9.png -------------------------------------------------------------------------------- /assets/shorts/horizontal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/horizontal0.png -------------------------------------------------------------------------------- /assets/shorts/horizontal10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/horizontal10.png -------------------------------------------------------------------------------- /assets/shorts/horizontal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/horizontal3.png -------------------------------------------------------------------------------- /assets/shorts/horizontal7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/horizontal7.png -------------------------------------------------------------------------------- /assets/shorts/horizontal9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/horizontal9.png -------------------------------------------------------------------------------- /assets/shorts/mask_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/mask_large.png -------------------------------------------------------------------------------- /assets/shorts/mask_pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/mask_pupparoll.png -------------------------------------------------------------------------------- /assets/shorts/mask_slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/mask_slim.png -------------------------------------------------------------------------------- /assets/shorts/pirate0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirate0.png -------------------------------------------------------------------------------- /assets/shorts/pirate10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirate10.png -------------------------------------------------------------------------------- /assets/shorts/pirate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirate3.png -------------------------------------------------------------------------------- /assets/shorts/pirate7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirate7.png -------------------------------------------------------------------------------- /assets/shorts/pirate9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirate9.png -------------------------------------------------------------------------------- /assets/shorts/piratealt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/piratealt0.png -------------------------------------------------------------------------------- /assets/shorts/piratealt10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/piratealt10.png -------------------------------------------------------------------------------- /assets/shorts/piratealt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/piratealt3.png -------------------------------------------------------------------------------- /assets/shorts/piratealt7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/piratealt7.png -------------------------------------------------------------------------------- /assets/shorts/piratealt9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/piratealt9.png -------------------------------------------------------------------------------- /assets/shorts/pirategald0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirategald0.png -------------------------------------------------------------------------------- /assets/shorts/pirategald10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirategald10.png -------------------------------------------------------------------------------- /assets/shorts/pirategald3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirategald3.png -------------------------------------------------------------------------------- /assets/shorts/pirategald7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirategald7.png -------------------------------------------------------------------------------- /assets/shorts/pirategald9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pirategald9.png -------------------------------------------------------------------------------- /assets/shorts/pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/pupparoll.png -------------------------------------------------------------------------------- /assets/shorts/stripe0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/stripe0.png -------------------------------------------------------------------------------- /assets/shorts/stripe10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/stripe10.png -------------------------------------------------------------------------------- /assets/shorts/stripe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/stripe3.png -------------------------------------------------------------------------------- /assets/shorts/stripe7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/stripe7.png -------------------------------------------------------------------------------- /assets/shorts/stripe9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/shorts/stripe9.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_big0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_big0.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_big1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_big1.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_big2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_big2.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_huge0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_huge0.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_huge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_huge1.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_huge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_huge2.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_small0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_small0.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_small1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_small1.png -------------------------------------------------------------------------------- /assets/space_adventure/asteroid_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/space_adventure/asteroid_small2.png -------------------------------------------------------------------------------- /assets/storage/jester_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/jester_single.png -------------------------------------------------------------------------------- /assets/storage/mask_jester_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_jester_single.png -------------------------------------------------------------------------------- /assets/storage/mask_pincher_single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_pincher_single1.png -------------------------------------------------------------------------------- /assets/storage/mask_pincher_single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_pincher_single2.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_double0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_double0.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_double1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_double1.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_double2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_double2.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_single0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_single0.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_single1.png -------------------------------------------------------------------------------- /assets/storage/mask_shuttle_single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/mask_shuttle_single2.png -------------------------------------------------------------------------------- /assets/storage/pincher_single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/pincher_single1.png -------------------------------------------------------------------------------- /assets/storage/pincher_single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/pincher_single2.png -------------------------------------------------------------------------------- /assets/storage/shuttle_double0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_double0.png -------------------------------------------------------------------------------- /assets/storage/shuttle_double1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_double1.png -------------------------------------------------------------------------------- /assets/storage/shuttle_double2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_double2.png -------------------------------------------------------------------------------- /assets/storage/shuttle_single0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_single0.png -------------------------------------------------------------------------------- /assets/storage/shuttle_single1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_single1.png -------------------------------------------------------------------------------- /assets/storage/shuttle_single2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/storage/shuttle_single2.png -------------------------------------------------------------------------------- /assets/treasure/treasure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/assets/treasure/treasure.gif -------------------------------------------------------------------------------- /demo/demo_v1.0.18.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/demo/demo_v1.0.18.mp4 -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/audio/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/audio/mod.rs -------------------------------------------------------------------------------- /src/audio/music_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/audio/music_player.rs -------------------------------------------------------------------------------- /src/crossterm_event_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/crossterm_event_handler.rs -------------------------------------------------------------------------------- /src/game_engine/action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/action.rs -------------------------------------------------------------------------------- /src/game_engine/brawl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/brawl.rs -------------------------------------------------------------------------------- /src/game_engine/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/constants.rs -------------------------------------------------------------------------------- /src/game_engine/end_of_quarter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/end_of_quarter.rs -------------------------------------------------------------------------------- /src/game_engine/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/game.rs -------------------------------------------------------------------------------- /src/game_engine/isolation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/isolation.rs -------------------------------------------------------------------------------- /src/game_engine/jump_ball.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/jump_ball.rs -------------------------------------------------------------------------------- /src/game_engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/mod.rs -------------------------------------------------------------------------------- /src/game_engine/off_the_screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/off_the_screen.rs -------------------------------------------------------------------------------- /src/game_engine/pick_and_roll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/pick_and_roll.rs -------------------------------------------------------------------------------- /src/game_engine/post.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/post.rs -------------------------------------------------------------------------------- /src/game_engine/rebound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/rebound.rs -------------------------------------------------------------------------------- /src/game_engine/shot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/shot.rs -------------------------------------------------------------------------------- /src/game_engine/start_of_quarter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/start_of_quarter.rs -------------------------------------------------------------------------------- /src/game_engine/substitution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/substitution.rs -------------------------------------------------------------------------------- /src/game_engine/tactic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/tactic.rs -------------------------------------------------------------------------------- /src/game_engine/timer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/timer.rs -------------------------------------------------------------------------------- /src/game_engine/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/game_engine/types.rs -------------------------------------------------------------------------------- /src/image/color_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/color_map.rs -------------------------------------------------------------------------------- /src/image/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/components.rs -------------------------------------------------------------------------------- /src/image/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/game.rs -------------------------------------------------------------------------------- /src/image/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/mod.rs -------------------------------------------------------------------------------- /src/image/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/player.rs -------------------------------------------------------------------------------- /src/image/spaceship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/spaceship.rs -------------------------------------------------------------------------------- /src/image/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/types.rs -------------------------------------------------------------------------------- /src/image/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/image/utils.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/network/challenge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/challenge.rs -------------------------------------------------------------------------------- /src/network/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/constants.rs -------------------------------------------------------------------------------- /src/network/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/handler.rs -------------------------------------------------------------------------------- /src/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/mod.rs -------------------------------------------------------------------------------- /src/network/network_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/network_callback.rs -------------------------------------------------------------------------------- /src/network/trade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/trade.rs -------------------------------------------------------------------------------- /src/network/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/network/types.rs -------------------------------------------------------------------------------- /src/relayer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/relayer.rs -------------------------------------------------------------------------------- /src/space_adventure/asteroid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/asteroid.rs -------------------------------------------------------------------------------- /src/space_adventure/collector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/collector.rs -------------------------------------------------------------------------------- /src/space_adventure/collisions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/collisions.rs -------------------------------------------------------------------------------- /src/space_adventure/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/constants.rs -------------------------------------------------------------------------------- /src/space_adventure/fragment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/fragment.rs -------------------------------------------------------------------------------- /src/space_adventure/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/mod.rs -------------------------------------------------------------------------------- /src/space_adventure/networking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/networking.rs -------------------------------------------------------------------------------- /src/space_adventure/particle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/particle.rs -------------------------------------------------------------------------------- /src/space_adventure/projectile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/projectile.rs -------------------------------------------------------------------------------- /src/space_adventure/space.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/space.rs -------------------------------------------------------------------------------- /src/space_adventure/space_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/space_callback.rs -------------------------------------------------------------------------------- /src/space_adventure/spaceship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/spaceship.rs -------------------------------------------------------------------------------- /src/space_adventure/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/traits.rs -------------------------------------------------------------------------------- /src/space_adventure/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/utils.rs -------------------------------------------------------------------------------- /src/space_adventure/visual_effects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/space_adventure/visual_effects.rs -------------------------------------------------------------------------------- /src/ssh/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ssh/channel.rs -------------------------------------------------------------------------------- /src/ssh/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ssh/client.rs -------------------------------------------------------------------------------- /src/ssh/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ssh/mod.rs -------------------------------------------------------------------------------- /src/ssh/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ssh/server.rs -------------------------------------------------------------------------------- /src/ssh/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ssh/utils.rs -------------------------------------------------------------------------------- /src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/store.rs -------------------------------------------------------------------------------- /src/tick_event_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/tick_event_handler.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/types.rs -------------------------------------------------------------------------------- /src/ui/big_numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/big_numbers.rs -------------------------------------------------------------------------------- /src/ui/button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/button.rs -------------------------------------------------------------------------------- /src/ui/clickable_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/clickable_list.rs -------------------------------------------------------------------------------- /src/ui/clickable_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/clickable_table.rs -------------------------------------------------------------------------------- /src/ui/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/constants.rs -------------------------------------------------------------------------------- /src/ui/galaxy_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/galaxy_panel.rs -------------------------------------------------------------------------------- /src/ui/game_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/game_panel.rs -------------------------------------------------------------------------------- /src/ui/gif_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/gif_map.rs -------------------------------------------------------------------------------- /src/ui/hover_text_line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/hover_text_line.rs -------------------------------------------------------------------------------- /src/ui/hover_text_span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/hover_text_span.rs -------------------------------------------------------------------------------- /src/ui/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/mod.rs -------------------------------------------------------------------------------- /src/ui/my_team_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/my_team_panel.rs -------------------------------------------------------------------------------- /src/ui/new_team_screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/new_team_screen.rs -------------------------------------------------------------------------------- /src/ui/player_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/player_panel.rs -------------------------------------------------------------------------------- /src/ui/popup_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/popup_message.rs -------------------------------------------------------------------------------- /src/ui/space_screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/space_screen.rs -------------------------------------------------------------------------------- /src/ui/splash_screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/splash_screen.rs -------------------------------------------------------------------------------- /src/ui/swarm_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/swarm_panel.rs -------------------------------------------------------------------------------- /src/ui/team_panel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/team_panel.rs -------------------------------------------------------------------------------- /src/ui/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/traits.rs -------------------------------------------------------------------------------- /src/ui/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/ui.rs -------------------------------------------------------------------------------- /src/ui/ui_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/ui_callback.rs -------------------------------------------------------------------------------- /src/ui/ui_frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/ui_frame.rs -------------------------------------------------------------------------------- /src/ui/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/utils.rs -------------------------------------------------------------------------------- /src/ui/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/ui/widgets.rs -------------------------------------------------------------------------------- /src/world/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/constants.rs -------------------------------------------------------------------------------- /src/world/honours.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/honours.rs -------------------------------------------------------------------------------- /src/world/jersey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/jersey.rs -------------------------------------------------------------------------------- /src/world/kartoffel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/kartoffel.rs -------------------------------------------------------------------------------- /src/world/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/mod.rs -------------------------------------------------------------------------------- /src/world/planet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/planet.rs -------------------------------------------------------------------------------- /src/world/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/player.rs -------------------------------------------------------------------------------- /src/world/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/position.rs -------------------------------------------------------------------------------- /src/world/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/resources.rs -------------------------------------------------------------------------------- /src/world/role.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/role.rs -------------------------------------------------------------------------------- /src/world/skill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/skill.rs -------------------------------------------------------------------------------- /src/world/spaceship.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/spaceship.rs -------------------------------------------------------------------------------- /src/world/team.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/team.rs -------------------------------------------------------------------------------- /src/world/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/types.rs -------------------------------------------------------------------------------- /src/world/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/utils.rs -------------------------------------------------------------------------------- /src/world/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/src/world/world.rs -------------------------------------------------------------------------------- /tests/asteroid_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/asteroid_images.png -------------------------------------------------------------------------------- /tests/pitchball_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/pitchball_image.png -------------------------------------------------------------------------------- /tests/pitchclassic_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/pitchclassic_image.png -------------------------------------------------------------------------------- /tests/pitchfancy_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/pitchfancy_image.png -------------------------------------------------------------------------------- /tests/pitchplanet_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/pitchplanet_image.png -------------------------------------------------------------------------------- /tests/player_image_Galdari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Galdari.png -------------------------------------------------------------------------------- /tests/player_image_Human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Human.png -------------------------------------------------------------------------------- /tests/player_image_Juppa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Juppa.png -------------------------------------------------------------------------------- /tests/player_image_Octopulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Octopulp.png -------------------------------------------------------------------------------- /tests/player_image_Polpett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Polpett.png -------------------------------------------------------------------------------- /tests/player_image_Pupparoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Pupparoll.png -------------------------------------------------------------------------------- /tests/player_image_Yardalaim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_Yardalaim.png -------------------------------------------------------------------------------- /tests/player_image_galdari_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_galdari_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_human_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_human_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_juppa_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_juppa_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_octopulp_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_octopulp_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_polpett_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_polpett_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_pupparoll_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_pupparoll_with_jersey.png -------------------------------------------------------------------------------- /tests/player_image_yardalaim_with_jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/player_image_yardalaim_with_jersey.png -------------------------------------------------------------------------------- /tests/spaceship_image_bresci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_bresci.png -------------------------------------------------------------------------------- /tests/spaceship_image_cafiero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_cafiero.png -------------------------------------------------------------------------------- /tests/spaceship_image_ibarruri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_ibarruri.png -------------------------------------------------------------------------------- /tests/spaceship_image_milwaukee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_milwaukee.png -------------------------------------------------------------------------------- /tests/spaceship_image_orwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_orwell.png -------------------------------------------------------------------------------- /tests/spaceship_image_pincher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_pincher.png -------------------------------------------------------------------------------- /tests/spaceship_image_ragnarok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_ragnarok.png -------------------------------------------------------------------------------- /tests/spaceship_image_rivolta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_rivolta.png -------------------------------------------------------------------------------- /tests/spaceship_image_yukawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricott1/rebels-in-the-sky/HEAD/tests/spaceship_image_yukawa.png --------------------------------------------------------------------------------