diff --git a/NS.py b/NS.py index cfaccd2..31b59f5 100644 --- a/NS.py +++ b/NS.py @@ -1724,7 +1724,7 @@ class Chemtrails(Sprite): @param parent PGFW game object that initialized this object """ Sprite.__init__(self, parent) - self.load_from_path(self.get_resource("littleSlimeGoop"), True) + self.load_from_path(self.get_resource("littleSlimeGoop"), True, query="*.png") # one frame for each pad orientation for direction in (NS.N, NS.NE, NS.E, NS.NW, NS.S, NS.W): self.add_frameset([direction], switch=(direction == NS.N)) @@ -1942,15 +1942,17 @@ class Boss(Animation): # Set up sprites with boil and hurt animations self.boss_sprites = [] self.boss_sprite_arms = [] - for path in (pathlib.Path(self.get_resource("koolManAnimations")), pathlib.Path(self.get_resource("alienAnimations")), - pathlib.Path(self.get_resource("spoopyAnimations"))): + for path in (pathlib.Path(self.get_resource("koolAnimations")), pathlib.Path(self.get_resource("alienAnimations")), + pathlib.Path(self.get_resource("emoAnimations"))): + prefix = path.stem.split("Animations")[0] self.boss_sprites.append(BossSprite(self, 42)) self.boss_sprites[-1].add_frameset(name="normal", switch=True) - self.boss_sprites[-1].load_from_path(path.joinpath("alienBoil"), True) + self.boss_sprites[-1].load_from_path(path.joinpath(f"{prefix}Boil"), True) self.boss_sprites[-1].add_frameset(name="hurt", switch=True) - self.boss_sprites[-1].load_from_path(path.joinpath("alienHit"), True) - self.boss_sprites[-1].add_frameset(name="entrance", switch=True) - self.boss_sprites[-1].load_from_path(path.joinpath("alienIntro"), True) + self.boss_sprites[-1].load_from_path(path.joinpath(f"{prefix}Hit"), True) + if prefix == "alien": + self.boss_sprites[-1].add_frameset(name="entrance", switch=True) + self.boss_sprites[-1].load_from_path(path.joinpath("alienIntro"), True) self.boss_sprites[-1].location.topleft = 207, 10 # Set the arm to its own sprite self.boss_sprite_arms.append(Sprite(self, 42)) @@ -1964,7 +1966,7 @@ class Boss(Animation): "L": NS.W, } # Set static frames for arms, one for each of the 6 board orientations - root = path.joinpath("alienArms/Moving") + root = path.joinpath(f"{prefix}Arms/Moving") static_arm_frame_map = { "UtoDR/*05.png": NS.N, "UtoDR/*10.png": NS.NE, @@ -1982,7 +1984,7 @@ class Boss(Animation): self.boss_sprite_arms[-1].add_frameset([frame_index], name=str(orientation)) orientation_frame_indices[orientation] = frame_index # Add sword smear animations to the alien's arm, one for each of the 30 possible combinations of 6 board orientations - for directory in path.joinpath("alienArms/Moving").iterdir(): + for directory in path.joinpath(f"{prefix}Arms/Moving").iterdir(): if directory.is_dir(): frame_paths = list(sorted(directory.iterdir())) # Extract board orientation IDs from the directory name @@ -2459,7 +2461,10 @@ class Boss(Animation): def enter_boss(self): self.level_sprite().unhide() self.level_sprite().get_current_frameset().reset() - self.level_sprite().set_frameset("entrance") + if self.level_index == 1: + self.level_sprite().set_frameset("entrance") + else: + self.level_sprite().set_frameset("normal") def level_sprite(self, level_index=None): """ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_01.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_01.png index ee87e25..649d220 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_01.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_02.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_02.png index 9d38b1c..3de5e26 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_02.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_03.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_03.png index 8e811f5..81d7ae3 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_03.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_04.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_04.png index 6bc723a..222461b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_04.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_05.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_05.png index c3230db..97e8a60 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_05.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_06.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_06.png index 1780a14..974c193 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_06.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_07.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_07.png index e099a0f..3ff4d1e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_07.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_08.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_08.png index 5e66b4e..327b87a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_08.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_09.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_09.png index 9b44b05..1adcc8a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_09.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_10.png b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_10.png index 1e41220..36b7e1e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_10.png and b/resource/alienAnimations/alienArms/Moving/DLtoL/alienArmLtoDL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_01.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_01.png index 873e19d..5a36083 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_01.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_02.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_02.png index d33b4db..2dbb0b2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_02.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_03.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_03.png index 0c2652f..7a2d965 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_03.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_04.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_04.png index 3307614..45fab63 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_04.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_05.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_05.png index c178e5a..7013cc7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_05.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_06.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_06.png index 873e19d..5a36083 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_06.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_07.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_07.png index 5735350..03fead2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_07.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_08.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_08.png index f82b0ac..d54d948 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_08.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_09.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_09.png index 7406e9e..4fd87a7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_09.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_10.png b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_10.png index d54a865..cd6ded2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_10.png and b/resource/alienAnimations/alienArms/Moving/DLtoU/alienArmUtoDL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_01.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_01.png index a02cc67..8d59a59 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_01.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_02.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_02.png index cbe1cbc..0c91764 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_02.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_03.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_03.png index 2332880..62f540d 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_03.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_04.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_04.png index caea9c2..29f5b39 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_04.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_05.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_05.png index 758b7b0..fef78ee 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_05.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_06.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_06.png index a02cc67..8d59a59 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_06.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_07.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_07.png index 6b9f830..1981650 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_07.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_08.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_08.png index 3872576..60a092c 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_08.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_09.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_09.png index 55af831..9114f44 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_09.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_10.png b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_10.png index 5e34039..009d3a4 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_10.png and b/resource/alienAnimations/alienArms/Moving/DRtoD/alienArmDRtoD_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_01.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_01.png index 1918aee..02c2d73 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_01.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_02.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_02.png index f5b8bf4..6b8d8ba 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_02.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_03.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_03.png index 6678d55..0bb80f1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_03.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_04.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_04.png index 26fbd7e..a2013ad 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_04.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_05.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_05.png index 758b7b0..fef78ee 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_05.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_06.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_06.png index 1918aee..02c2d73 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_06.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_07.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_07.png index 9f62572..b5c6546 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_07.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_08.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_08.png index 4a21f02..9db4af2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_08.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_09.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_09.png index 896f7ac..b5d222e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_09.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_10.png b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_10.png index 8e54331..b53f85d 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_10.png and b/resource/alienAnimations/alienArms/Moving/DRtoDL/alienArmDRtoDL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_01.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_01.png index e65b086..6061579 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_01.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_02.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_02.png index f3f644b..298c1ea 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_02.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_03.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_03.png index dbaab1a..9ed700e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_03.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_04.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_04.png index 4c5647c..09a29f8 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_04.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_05.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_05.png index 758b7b0..fef78ee 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_05.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_06.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_06.png index e65b086..6061579 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_06.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_07.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_07.png index 3ca88fc..e43ccdb 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_07.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_08.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_08.png index d70c162..fc77b07 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_08.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_09.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_09.png index 13d99b8..ac22fcd 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_09.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_10.png b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_10.png index 23a6ced..0a6e180 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_10.png and b/resource/alienAnimations/alienArms/Moving/DRtoL/alienArmDRtoL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_01.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_01.png index df0a4cb..69d4baf 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_01.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_02.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_02.png index 29e6c5d..6936382 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_02.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_03.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_03.png index 3dbdf70..365494a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_03.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_04.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_04.png index 2623d24..f349827 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_04.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_05.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_05.png index 3969bcc..2f993c8 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_05.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_06.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_06.png index da45778..ed32ea1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_06.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_07.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_07.png index c17b90d..aa56b80 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_07.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_08.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_08.png index b0e8653..52e5a6e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_08.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_09.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_09.png index d3e7db2..7c6774b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_09.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_10.png b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_10.png index 7b9f12d..20eaed1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_10.png and b/resource/alienAnimations/alienArms/Moving/DtoDL/alienArmDtoDL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_01.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_01.png index cb09a9b..1520f45 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_01.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_02.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_02.png index 1cee82d..79567c5 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_02.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_03.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_03.png index df63f21..7dddb55 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_03.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_04.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_04.png index 61effea..abc156f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_04.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_05.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_05.png index 3ae5ff4..3511aba 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_05.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_06.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_06.png index e3ad568..7f0735b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_06.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_07.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_07.png index 522f28d..67eb58b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_07.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_08.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_08.png index c875222..ea4424d 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_08.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_09.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_09.png index 2e9f401..b2e0533 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_09.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_10.png b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_10.png index 5e805bc..d890db2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_10.png and b/resource/alienAnimations/alienArms/Moving/DtoL/alienArmLtoD_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_01.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_01.png index 19316af..cba9c60 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_01.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_02.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_02.png index a56e397..359d361 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_02.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_03.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_03.png index 3c5cd77..49247ed 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_03.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_04.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_04.png index 6667542..cab58d7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_04.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_05.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_05.png index 5e805bc..d890db2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_05.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_06.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_06.png index 19316af..cba9c60 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_06.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_07.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_07.png index c82ab45..1ef77f7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_07.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_08.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_08.png index e7a2a3a..e45334d 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_08.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_09.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_09.png index 4e4c768..974354f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_09.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_10.png b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_10.png index 71a09c9..075d516 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_10.png and b/resource/alienAnimations/alienArms/Moving/LtoR/alienArmLtoR_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_01.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_01.png index d67eb32..f8ea9a1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_01.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_02.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_02.png index e4defba..577e491 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_02.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_03.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_03.png index 1a480aa..cce1c4a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_03.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_04.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_04.png index 1cbd4cb..142f678 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_04.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_05.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_05.png index 91889b6..c17f4da 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_05.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_06.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_06.png index d67eb32..f8ea9a1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_06.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_07.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_07.png index 4c1c949..4d792f5 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_07.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_08.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_08.png index c56752f..f97eb04 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_08.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_09.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_09.png index 753f5bb..9946fcb 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_09.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_10.png b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_10.png index 6549359..2d23794 100644 Binary files a/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_10.png and b/resource/alienAnimations/alienArms/Moving/LtoU/alienArmLtoU_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_01.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_01.png index 4ad733b..af374b2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_01.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_02.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_02.png index 1d357b5..235e099 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_02.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_03.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_03.png index 43b04aa..582e5b7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_03.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_04.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_04.png index c146671..879fe41 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_04.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_05.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_05.png index dcd8ee5..301580a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_05.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_06.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_06.png index 4ad733b..af374b2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_06.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_07.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_07.png index 1ce3026..d29a86c 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_07.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_08.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_08.png index b53df29..f336bef 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_08.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_09.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_09.png index 0d2d698..1001456 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_09.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_10.png b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_10.png index 933439e..a324a87 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_10.png and b/resource/alienAnimations/alienArms/Moving/RtoD/alienArmRtoD_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_01.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_01.png index aa027fb..9cff8cd 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_01.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_02.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_02.png index 9c95a49..67c2262 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_02.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_03.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_03.png index 19be2d0..303cd56 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_03.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_04.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_04.png index 862429c..17608da 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_04.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_05.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_05.png index 2f66006..270d7b1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_05.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_06.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_06.png index aa027fb..9cff8cd 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_06.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_07.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_07.png index 7491c20..654445f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_07.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_08.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_08.png index 07020c7..34382e7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_08.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_09.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_09.png index 427b55a..04c2d42 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_09.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_10.png b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_10.png index 8992c0c..b32b7c9 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_10.png and b/resource/alienAnimations/alienArms/Moving/RtoDL/alienArmRtoDL_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_01.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_01.png index 0fb0b0b..c0340db 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_01.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_02.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_02.png index 756639a..cbb6931 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_02.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_03.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_03.png index 3543437..f4eacac 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_03.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_04.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_04.png index 224cdfb..7b57dbc 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_04.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_05.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_05.png index 41bba76..369923b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_05.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_06.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_06.png index bcd857d..e4fd3ef 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_06.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_07.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_07.png index 3ea8bae..a016fc1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_07.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_08.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_08.png index ba5bb7c..ea2b452 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_08.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_09.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_09.png index 426014c..3cd3c84 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_09.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_10.png b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_10.png index 758b7b0..fef78ee 100644 Binary files a/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_10.png and b/resource/alienAnimations/alienArms/Moving/RtoDR/alienArmDRtoR_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_01.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_01.png index e5ce03f..8ade96f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_01.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_02.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_02.png index a9542b1..b5f5349 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_02.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_03.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_03.png index 21c016a..9dc9ed8 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_03.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_04.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_04.png index 77e7467..4535b2a 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_04.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_05.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_05.png index 6ac004a..5b4c818 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_05.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_06.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_06.png index e5ce03f..8ade96f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_06.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_07.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_07.png index 79acb83..cdddf44 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_07.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_08.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_08.png index e8a7fb2..5c7681f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_08.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_09.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_09.png index 5a000c8..265ccf7 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_09.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_10.png b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_10.png index 924ed98..d435b9d 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_10.png and b/resource/alienAnimations/alienArms/Moving/UtoD/alienArmDtoU_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_01.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_01.png index 0953d7c..6358479 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_01.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_02.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_02.png index 99a619b..dfbabb1 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_02.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_03.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_03.png index 0c89929..7668d2b 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_03.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_04.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_04.png index 13914f5..82a7527 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_04.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_05.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_05.png index 0aec1ea..4940845 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_05.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_06.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_06.png index 0953d7c..6358479 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_06.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_07.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_07.png index 4e6f3ff..4cfe92c 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_07.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_08.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_08.png index 97939aa..0e4f0fb 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_08.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_09.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_09.png index 8e4f660..5d6ac27 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_09.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_10.png b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_10.png index 758b7b0..fef78ee 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_10.png and b/resource/alienAnimations/alienArms/Moving/UtoDR/alienArmDRtoU_10.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_01.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_01.png index 8507141..e99c7d2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_01.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_01.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_02.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_02.png index 2ca36ef..ff9920f 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_02.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_02.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_03.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_03.png index 7819ed6..06b1729 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_03.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_03.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_04.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_04.png index d014dcc..974a96e 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_04.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_04.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_05.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_05.png index eefaba2..14ac139 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_05.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_05.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_06.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_06.png index 8507141..e99c7d2 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_06.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_06.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_07.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_07.png index def535c..045ccbb 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_07.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_07.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_08.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_08.png index c2b6ac4..a660243 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_08.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_08.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_09.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_09.png index 538b378..5f7b8e3 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_09.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_09.png differ diff --git a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_10.png b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_10.png index da545f6..28b5db5 100644 Binary files a/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_10.png and b/resource/alienAnimations/alienArms/Moving/UtoR/alienArmRtoU_10.png differ diff --git a/resource/alienAnimations/alienArms/Still/alienArm_down.png b/resource/alienAnimations/alienArms/Still/alienArm_down.png deleted file mode 100644 index dadb83f..0000000 Binary files a/resource/alienAnimations/alienArms/Still/alienArm_down.png and /dev/null differ diff --git a/resource/alienAnimations/alienArms/Still/alienArm_downLeft.png b/resource/alienAnimations/alienArms/Still/alienArm_downLeft.png deleted file mode 100644 index c3230db..0000000 Binary files a/resource/alienAnimations/alienArms/Still/alienArm_downLeft.png and /dev/null differ diff --git a/resource/alienAnimations/alienArms/Still/alienArm_left.png b/resource/alienAnimations/alienArms/Still/alienArm_left.png deleted file mode 100644 index 84d43cb..0000000 Binary files a/resource/alienAnimations/alienArms/Still/alienArm_left.png and /dev/null differ diff --git a/resource/alienAnimations/alienArms/Still/alienArm_right.png b/resource/alienAnimations/alienArms/Still/alienArm_right.png deleted file mode 100644 index 958acbf..0000000 Binary files a/resource/alienAnimations/alienArms/Still/alienArm_right.png and /dev/null differ diff --git a/resource/alienAnimations/alienArms/Still/alienArm_up.png b/resource/alienAnimations/alienArms/Still/alienArm_up.png deleted file mode 100644 index ffcd9b2..0000000 Binary files a/resource/alienAnimations/alienArms/Still/alienArm_up.png and /dev/null differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_01.png b/resource/alienAnimations/alienBoil/alienBoil_01.png index 00e69bd..66efbea 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_01.png and b/resource/alienAnimations/alienBoil/alienBoil_01.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_02.png b/resource/alienAnimations/alienBoil/alienBoil_02.png index 0c50b35..c5dd37a 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_02.png and b/resource/alienAnimations/alienBoil/alienBoil_02.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_03.png b/resource/alienAnimations/alienBoil/alienBoil_03.png index a2194d5..9286dd1 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_03.png and b/resource/alienAnimations/alienBoil/alienBoil_03.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_04.png b/resource/alienAnimations/alienBoil/alienBoil_04.png index c4ffa92..42dfde4 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_04.png and b/resource/alienAnimations/alienBoil/alienBoil_04.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_05.png b/resource/alienAnimations/alienBoil/alienBoil_05.png index 1a9fa67..fb8bcb6 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_05.png and b/resource/alienAnimations/alienBoil/alienBoil_05.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_06.png b/resource/alienAnimations/alienBoil/alienBoil_06.png index 1fd6825..f56ccdf 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_06.png and b/resource/alienAnimations/alienBoil/alienBoil_06.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_07.png b/resource/alienAnimations/alienBoil/alienBoil_07.png index 1a9fa67..fb8bcb6 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_07.png and b/resource/alienAnimations/alienBoil/alienBoil_07.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_08.png b/resource/alienAnimations/alienBoil/alienBoil_08.png index c4ffa92..42dfde4 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_08.png and b/resource/alienAnimations/alienBoil/alienBoil_08.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_09.png b/resource/alienAnimations/alienBoil/alienBoil_09.png index a2194d5..9286dd1 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_09.png and b/resource/alienAnimations/alienBoil/alienBoil_09.png differ diff --git a/resource/alienAnimations/alienBoil/alienBoil_10.png b/resource/alienAnimations/alienBoil/alienBoil_10.png index 0c50b35..c5dd37a 100644 Binary files a/resource/alienAnimations/alienBoil/alienBoil_10.png and b/resource/alienAnimations/alienBoil/alienBoil_10.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_1.png b/resource/alienAnimations/alienHit/alienHit_1.png index 14130f3..1721fbe 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_1.png and b/resource/alienAnimations/alienHit/alienHit_1.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_2.png b/resource/alienAnimations/alienHit/alienHit_2.png index fe43d90..60cfa37 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_2.png and b/resource/alienAnimations/alienHit/alienHit_2.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_3.png b/resource/alienAnimations/alienHit/alienHit_3.png index e309575..c6df08d 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_3.png and b/resource/alienAnimations/alienHit/alienHit_3.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_4.png b/resource/alienAnimations/alienHit/alienHit_4.png index f8b4c93..0af7805 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_4.png and b/resource/alienAnimations/alienHit/alienHit_4.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_5.png b/resource/alienAnimations/alienHit/alienHit_5.png index 20e800d..6a99071 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_5.png and b/resource/alienAnimations/alienHit/alienHit_5.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_6.png b/resource/alienAnimations/alienHit/alienHit_6.png index 086cf3d..55a3c39 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_6.png and b/resource/alienAnimations/alienHit/alienHit_6.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_7.png b/resource/alienAnimations/alienHit/alienHit_7.png index 644ab3f..d5d6d9e 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_7.png and b/resource/alienAnimations/alienHit/alienHit_7.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_8.png b/resource/alienAnimations/alienHit/alienHit_8.png index e5c629b..a33111b 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_8.png and b/resource/alienAnimations/alienHit/alienHit_8.png differ diff --git a/resource/alienAnimations/alienHit/alienHit_9.png b/resource/alienAnimations/alienHit/alienHit_9.png index 3fc80d9..eba43b0 100644 Binary files a/resource/alienAnimations/alienHit/alienHit_9.png and b/resource/alienAnimations/alienHit/alienHit_9.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_1.png b/resource/alienAnimations/alienIntro/alienIntro_1.png index 5a315f7..9c681d0 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_1.png and b/resource/alienAnimations/alienIntro/alienIntro_1.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_2.png b/resource/alienAnimations/alienIntro/alienIntro_2.png index d146b59..2b5e576 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_2.png and b/resource/alienAnimations/alienIntro/alienIntro_2.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_3.png b/resource/alienAnimations/alienIntro/alienIntro_3.png index 156f511..f6928be 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_3.png and b/resource/alienAnimations/alienIntro/alienIntro_3.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_4.png b/resource/alienAnimations/alienIntro/alienIntro_4.png index 72778fd..3029e15 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_4.png and b/resource/alienAnimations/alienIntro/alienIntro_4.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_5.png b/resource/alienAnimations/alienIntro/alienIntro_5.png index b2edbe6..83c58ff 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_5.png and b/resource/alienAnimations/alienIntro/alienIntro_5.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_6.png b/resource/alienAnimations/alienIntro/alienIntro_6.png index eba5add..2dc3f8f 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_6.png and b/resource/alienAnimations/alienIntro/alienIntro_6.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_7.png b/resource/alienAnimations/alienIntro/alienIntro_7.png index 4a4459d..c3a0168 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_7.png and b/resource/alienAnimations/alienIntro/alienIntro_7.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_8.png b/resource/alienAnimations/alienIntro/alienIntro_8.png index 30124eb..469b907 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_8.png and b/resource/alienAnimations/alienIntro/alienIntro_8.png differ diff --git a/resource/alienAnimations/alienIntro/alienIntro_9.png b/resource/alienAnimations/alienIntro/alienIntro_9.png index 00e69bd..66efbea 100644 Binary files a/resource/alienAnimations/alienIntro/alienIntro_9.png and b/resource/alienAnimations/alienIntro/alienIntro_9.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_01.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_01.png new file mode 100644 index 0000000..5bf6237 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_02.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_02.png new file mode 100644 index 0000000..a74a9dc Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_03.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_03.png new file mode 100644 index 0000000..04a426a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_04.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_04.png new file mode 100644 index 0000000..7096a73 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_05.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_05.png new file mode 100644 index 0000000..456f84f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_06.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_06.png new file mode 100644 index 0000000..ccb3db0 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_07.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_07.png new file mode 100644 index 0000000..d03efd2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_08.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_08.png new file mode 100644 index 0000000..cf1a125 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_09.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_09.png new file mode 100644 index 0000000..4d515d7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_10.png b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_10.png new file mode 100644 index 0000000..4d786af Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoL/alienArmLtoDL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_01.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_01.png new file mode 100644 index 0000000..38dad22 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_02.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_02.png new file mode 100644 index 0000000..6d2de87 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_03.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_03.png new file mode 100644 index 0000000..24eb423 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_04.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_04.png new file mode 100644 index 0000000..7db7cf2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_05.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_05.png new file mode 100644 index 0000000..a52f7cd Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_06.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_06.png new file mode 100644 index 0000000..38dad22 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_07.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_07.png new file mode 100644 index 0000000..70aa997 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_08.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_08.png new file mode 100644 index 0000000..b1e4f22 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_09.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_09.png new file mode 100644 index 0000000..ae12eba Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_10.png b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_10.png new file mode 100644 index 0000000..ed9c336 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DLtoU/alienArmUtoDL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_01.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_01.png new file mode 100644 index 0000000..987683f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_02.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_02.png new file mode 100644 index 0000000..ecb61c6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_03.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_03.png new file mode 100644 index 0000000..4552ceb Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_04.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_04.png new file mode 100644 index 0000000..7688fac Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_05.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_05.png new file mode 100644 index 0000000..6136e2a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_06.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_06.png new file mode 100644 index 0000000..987683f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_07.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_07.png new file mode 100644 index 0000000..a434f51 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_08.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_08.png new file mode 100644 index 0000000..827a7fe Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_09.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_09.png new file mode 100644 index 0000000..6e28ac5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_10.png b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_10.png new file mode 100644 index 0000000..af4ebe3 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoD/alienArmDRtoD_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_01.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_01.png new file mode 100644 index 0000000..392709c Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_02.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_02.png new file mode 100644 index 0000000..b47a3a4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_03.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_03.png new file mode 100644 index 0000000..4c2636e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_04.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_04.png new file mode 100644 index 0000000..4697e7f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_05.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_05.png new file mode 100644 index 0000000..6136e2a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_06.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_06.png new file mode 100644 index 0000000..392709c Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_07.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_07.png new file mode 100644 index 0000000..b934f44 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_08.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_08.png new file mode 100644 index 0000000..a6ce8aa Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_09.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_09.png new file mode 100644 index 0000000..8b0bad5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_10.png b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_10.png new file mode 100644 index 0000000..53b0312 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoDL/alienArmDRtoDL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_01.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_01.png new file mode 100644 index 0000000..693786e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_02.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_02.png new file mode 100644 index 0000000..3b501c4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_03.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_03.png new file mode 100644 index 0000000..c472f45 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_04.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_04.png new file mode 100644 index 0000000..86dd2db Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_05.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_05.png new file mode 100644 index 0000000..6136e2a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_06.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_06.png new file mode 100644 index 0000000..693786e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_07.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_07.png new file mode 100644 index 0000000..eb28507 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_08.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_08.png new file mode 100644 index 0000000..987fb72 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_09.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_09.png new file mode 100644 index 0000000..177a7e4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_10.png b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_10.png new file mode 100644 index 0000000..2682924 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DRtoL/alienArmDRtoL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_01.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_01.png new file mode 100644 index 0000000..384d167 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_02.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_02.png new file mode 100644 index 0000000..1d7e62b Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_03.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_03.png new file mode 100644 index 0000000..9777307 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_04.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_04.png new file mode 100644 index 0000000..90d07f9 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_05.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_05.png new file mode 100644 index 0000000..032c7d9 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_06.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_06.png new file mode 100644 index 0000000..8986659 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_07.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_07.png new file mode 100644 index 0000000..af32a1d Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_08.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_08.png new file mode 100644 index 0000000..bba54bd Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_09.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_09.png new file mode 100644 index 0000000..7ed9e46 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_10.png b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_10.png new file mode 100644 index 0000000..5297279 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoDL/alienArmDtoDL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_01.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_01.png new file mode 100644 index 0000000..cdfa80c Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_02.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_02.png new file mode 100644 index 0000000..d3cae4d Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_03.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_03.png new file mode 100644 index 0000000..7f40110 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_04.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_04.png new file mode 100644 index 0000000..4b52539 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_05.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_05.png new file mode 100644 index 0000000..2650a26 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_06.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_06.png new file mode 100644 index 0000000..cb35250 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_07.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_07.png new file mode 100644 index 0000000..36211b5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_08.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_08.png new file mode 100644 index 0000000..b075950 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_09.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_09.png new file mode 100644 index 0000000..e5bbd8a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_10.png b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_10.png new file mode 100644 index 0000000..c54fce4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/DtoL/alienArmLtoD_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_01.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_01.png new file mode 100644 index 0000000..29360ae Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_02.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_02.png new file mode 100644 index 0000000..3b66017 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_03.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_03.png new file mode 100644 index 0000000..956f4d5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_04.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_04.png new file mode 100644 index 0000000..33d4297 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_05.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_05.png new file mode 100644 index 0000000..c54fce4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_06.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_06.png new file mode 100644 index 0000000..29360ae Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_07.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_07.png new file mode 100644 index 0000000..d8eedf6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_08.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_08.png new file mode 100644 index 0000000..87bfb05 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_09.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_09.png new file mode 100644 index 0000000..cf4aed9 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_10.png b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_10.png new file mode 100644 index 0000000..9baaeae Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoR/alienArmLtoR_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_01.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_01.png new file mode 100644 index 0000000..e871162 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_02.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_02.png new file mode 100644 index 0000000..e1ab48e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_03.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_03.png new file mode 100644 index 0000000..65331f7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_04.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_04.png new file mode 100644 index 0000000..f42680f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_05.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_05.png new file mode 100644 index 0000000..7ff8104 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_06.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_06.png new file mode 100644 index 0000000..e871162 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_07.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_07.png new file mode 100644 index 0000000..9e479bc Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_08.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_08.png new file mode 100644 index 0000000..52a0481 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_09.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_09.png new file mode 100644 index 0000000..57f24bb Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_10.png b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_10.png new file mode 100644 index 0000000..b33664d Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/LtoU/alienArmLtoU_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_01.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_01.png new file mode 100644 index 0000000..a731c02 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_02.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_02.png new file mode 100644 index 0000000..07e1f46 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_03.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_03.png new file mode 100644 index 0000000..024a00c Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_04.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_04.png new file mode 100644 index 0000000..8013c68 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_05.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_05.png new file mode 100644 index 0000000..bd52b24 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_06.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_06.png new file mode 100644 index 0000000..a731c02 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_07.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_07.png new file mode 100644 index 0000000..b9ca951 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_08.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_08.png new file mode 100644 index 0000000..dd4b041 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_09.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_09.png new file mode 100644 index 0000000..c4f5559 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_10.png b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_10.png new file mode 100644 index 0000000..07aa655 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoD/alienArmRtoD_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_01.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_01.png new file mode 100644 index 0000000..23b0739 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_02.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_02.png new file mode 100644 index 0000000..12410fc Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_03.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_03.png new file mode 100644 index 0000000..ac4104f Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_04.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_04.png new file mode 100644 index 0000000..112fdb4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_05.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_05.png new file mode 100644 index 0000000..5235377 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_06.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_06.png new file mode 100644 index 0000000..23b0739 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_07.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_07.png new file mode 100644 index 0000000..fa9ee2e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_08.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_08.png new file mode 100644 index 0000000..0527631 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_09.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_09.png new file mode 100644 index 0000000..912f610 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_10.png b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_10.png new file mode 100644 index 0000000..21dac66 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDL/alienArmRtoDL_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_01.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_01.png new file mode 100644 index 0000000..8d523ce Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_02.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_02.png new file mode 100644 index 0000000..3fc874b Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_03.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_03.png new file mode 100644 index 0000000..3ae4ad2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_04.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_04.png new file mode 100644 index 0000000..59a3642 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_05.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_05.png new file mode 100644 index 0000000..44daae3 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_06.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_06.png new file mode 100644 index 0000000..07892b4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_07.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_07.png new file mode 100644 index 0000000..ff60550 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_08.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_08.png new file mode 100644 index 0000000..7add70c Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_09.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_09.png new file mode 100644 index 0000000..aa759d5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_10.png b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_10.png new file mode 100644 index 0000000..6136e2a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/RtoDR/alienArmDRtoR_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_01.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_01.png new file mode 100644 index 0000000..d1181dd Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_02.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_02.png new file mode 100644 index 0000000..acf4c6e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_03.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_03.png new file mode 100644 index 0000000..619c429 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_04.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_04.png new file mode 100644 index 0000000..48981aa Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_05.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_05.png new file mode 100644 index 0000000..87c5007 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_06.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_06.png new file mode 100644 index 0000000..d1181dd Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_07.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_07.png new file mode 100644 index 0000000..f004360 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_08.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_08.png new file mode 100644 index 0000000..bea3700 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_09.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_09.png new file mode 100644 index 0000000..16ce1b0 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_10.png b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_10.png new file mode 100644 index 0000000..fc80773 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoD/alienArmDtoU_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_01.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_01.png new file mode 100644 index 0000000..16353ed Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_02.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_02.png new file mode 100644 index 0000000..9207a65 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_03.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_03.png new file mode 100644 index 0000000..49b71c6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_04.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_04.png new file mode 100644 index 0000000..d0d418d Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_05.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_05.png new file mode 100644 index 0000000..af48fca Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_06.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_06.png new file mode 100644 index 0000000..16353ed Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_07.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_07.png new file mode 100644 index 0000000..d548f73 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_08.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_08.png new file mode 100644 index 0000000..384cfe0 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_09.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_09.png new file mode 100644 index 0000000..77ffa9b Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_10.png b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_10.png new file mode 100644 index 0000000..6136e2a Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoDR/alienArmDRtoU_10.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_01.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_01.png new file mode 100644 index 0000000..511adff Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_01.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_02.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_02.png new file mode 100644 index 0000000..b151796 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_02.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_03.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_03.png new file mode 100644 index 0000000..1ba37d7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_03.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_04.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_04.png new file mode 100644 index 0000000..314ca7d Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_04.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_05.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_05.png new file mode 100644 index 0000000..991d11e Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_05.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_06.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_06.png new file mode 100644 index 0000000..511adff Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_06.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_07.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_07.png new file mode 100644 index 0000000..66b8973 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_07.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_08.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_08.png new file mode 100644 index 0000000..361ab67 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_08.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_09.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_09.png new file mode 100644 index 0000000..65ee1be Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_09.png differ diff --git a/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_10.png b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_10.png new file mode 100644 index 0000000..bbd4099 Binary files /dev/null and b/resource/emoAnimations/emoArms/Moving/UtoR/alienArmRtoU_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_01.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_01.png new file mode 100644 index 0000000..7013cc7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_02.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_02.png new file mode 100644 index 0000000..ba71451 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_03.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_03.png new file mode 100644 index 0000000..918b7c7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_04.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_04.png new file mode 100644 index 0000000..7ff9f51 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_05.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_05.png new file mode 100644 index 0000000..8caded7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_06.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_06.png new file mode 100644 index 0000000..ac0e518 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_07.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_07.png new file mode 100644 index 0000000..8caded7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_08.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_08.png new file mode 100644 index 0000000..7ff9f51 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_09.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_09.png new file mode 100644 index 0000000..918b7c7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_10.png b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_10.png new file mode 100644 index 0000000..ba71451 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownLeft/alienArm_downLeft_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_01.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_01.png new file mode 100644 index 0000000..2ac7088 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_02.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_02.png new file mode 100644 index 0000000..71aa1ea Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_03.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_03.png new file mode 100644 index 0000000..278900c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_04.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_04.png new file mode 100644 index 0000000..e06a120 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_05.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_05.png new file mode 100644 index 0000000..7044dc0 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_06.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_06.png new file mode 100644 index 0000000..4a2f75a Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_07.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_07.png new file mode 100644 index 0000000..7044dc0 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_08.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_08.png new file mode 100644 index 0000000..e06a120 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_09.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_09.png new file mode 100644 index 0000000..278900c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_10.png b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_10.png new file mode 100644 index 0000000..71aa1ea Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArmDownRight/alienArmDownRight_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_01.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_01.png new file mode 100644 index 0000000..009d3a4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_02.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_02.png new file mode 100644 index 0000000..3657ee2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_03.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_03.png new file mode 100644 index 0000000..b4d2607 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_04.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_04.png new file mode 100644 index 0000000..57a419e Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_05.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_05.png new file mode 100644 index 0000000..9c9ddbc Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_06.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_06.png new file mode 100644 index 0000000..bb4da84 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_07.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_07.png new file mode 100644 index 0000000..9c9ddbc Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_08.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_08.png new file mode 100644 index 0000000..57a419e Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_09.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_09.png new file mode 100644 index 0000000..b4d2607 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_10.png b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_10.png new file mode 100644 index 0000000..3657ee2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_down/alienArm_down_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_01.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_01.png new file mode 100644 index 0000000..d890db2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_02.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_02.png new file mode 100644 index 0000000..c3e37fb Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_03.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_03.png new file mode 100644 index 0000000..792404d Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_04.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_04.png new file mode 100644 index 0000000..1008b88 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_05.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_05.png new file mode 100644 index 0000000..1e59e58 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_06.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_06.png new file mode 100644 index 0000000..a58e62a Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_07.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_07.png new file mode 100644 index 0000000..1e59e58 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_08.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_08.png new file mode 100644 index 0000000..1008b88 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_09.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_09.png new file mode 100644 index 0000000..792404d Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_10.png b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_10.png new file mode 100644 index 0000000..c3e37fb Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_left/alienArm_left_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_01.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_01.png new file mode 100644 index 0000000..270d7b1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_02.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_02.png new file mode 100644 index 0000000..6dbc9ad Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_03.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_03.png new file mode 100644 index 0000000..8b4bb88 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_04.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_04.png new file mode 100644 index 0000000..2ae3f7c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_05.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_05.png new file mode 100644 index 0000000..4330be8 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_06.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_06.png new file mode 100644 index 0000000..0dfd047 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_07.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_07.png new file mode 100644 index 0000000..4330be8 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_08.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_08.png new file mode 100644 index 0000000..2ae3f7c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_09.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_09.png new file mode 100644 index 0000000..8b4bb88 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_10.png b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_10.png new file mode 100644 index 0000000..6dbc9ad Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_right/alienArm_right_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_01.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_01.png new file mode 100644 index 0000000..5b4c818 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_02.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_02.png new file mode 100644 index 0000000..b12b831 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_03.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_03.png new file mode 100644 index 0000000..7e0a360 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_04.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_04.png new file mode 100644 index 0000000..91ccc94 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_05.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_05.png new file mode 100644 index 0000000..120dba7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_06.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_06.png new file mode 100644 index 0000000..2928e64 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_07.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_07.png new file mode 100644 index 0000000..120dba7 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_08.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_08.png new file mode 100644 index 0000000..91ccc94 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_09.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_09.png new file mode 100644 index 0000000..7e0a360 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_10.png b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_10.png new file mode 100644 index 0000000..b12b831 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/alienArm_up/alienArm_up_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_01.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_01.png new file mode 100644 index 0000000..60b7b8e Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_02.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_02.png new file mode 100644 index 0000000..092ec1a Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_03.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_03.png new file mode 100644 index 0000000..de0fa71 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_04.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_04.png new file mode 100644 index 0000000..52a8df2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_05.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_05.png new file mode 100644 index 0000000..25d5c54 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_06.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_06.png new file mode 100644 index 0000000..4baabfd Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_07.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_07.png new file mode 100644 index 0000000..25d5c54 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_08.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_08.png new file mode 100644 index 0000000..52a8df2 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_09.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_09.png new file mode 100644 index 0000000..de0fa71 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_10.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_10.png new file mode 100644 index 0000000..092ec1a Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownLeft/alienArm_downLeft_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_01.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_01.png new file mode 100644 index 0000000..c6ea0d3 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_02.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_02.png new file mode 100644 index 0000000..b96960c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_03.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_03.png new file mode 100644 index 0000000..301fba5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_04.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_04.png new file mode 100644 index 0000000..711c299 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_05.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_05.png new file mode 100644 index 0000000..32b969b Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_06.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_06.png new file mode 100644 index 0000000..50beefb Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_07.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_07.png new file mode 100644 index 0000000..32b969b Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_08.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_08.png new file mode 100644 index 0000000..711c299 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_09.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_09.png new file mode 100644 index 0000000..301fba5 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_10.png b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_10.png new file mode 100644 index 0000000..b96960c Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArmDownRight/alienArmDownRight_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_01.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_01.png new file mode 100644 index 0000000..79ea2ee Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_02.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_02.png new file mode 100644 index 0000000..ef97c94 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_03.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_03.png new file mode 100644 index 0000000..eec71fd Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_04.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_04.png new file mode 100644 index 0000000..c9788cf Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_05.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_05.png new file mode 100644 index 0000000..7afcfef Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_06.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_06.png new file mode 100644 index 0000000..81e5fd9 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_07.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_07.png new file mode 100644 index 0000000..7afcfef Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_08.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_08.png new file mode 100644 index 0000000..c9788cf Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_09.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_09.png new file mode 100644 index 0000000..eec71fd Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_10.png b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_10.png new file mode 100644 index 0000000..ef97c94 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_down/alienArm_down_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_01.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_01.png new file mode 100644 index 0000000..05139e1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_02.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_02.png new file mode 100644 index 0000000..c8a8115 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_03.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_03.png new file mode 100644 index 0000000..c597453 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_04.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_04.png new file mode 100644 index 0000000..927214f Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_05.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_05.png new file mode 100644 index 0000000..c7677a6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_06.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_06.png new file mode 100644 index 0000000..2ce5233 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_07.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_07.png new file mode 100644 index 0000000..c7677a6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_08.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_08.png new file mode 100644 index 0000000..927214f Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_09.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_09.png new file mode 100644 index 0000000..c597453 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_10.png b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_10.png new file mode 100644 index 0000000..c8a8115 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_left/alienArm_left_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_01.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_01.png new file mode 100644 index 0000000..5db5617 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_02.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_02.png new file mode 100644 index 0000000..618fc04 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_03.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_03.png new file mode 100644 index 0000000..e2eafb6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_04.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_04.png new file mode 100644 index 0000000..45377c4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_05.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_05.png new file mode 100644 index 0000000..92c98d1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_06.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_06.png new file mode 100644 index 0000000..3780deb Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_07.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_07.png new file mode 100644 index 0000000..92c98d1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_08.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_08.png new file mode 100644 index 0000000..45377c4 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_09.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_09.png new file mode 100644 index 0000000..e2eafb6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_10.png b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_10.png new file mode 100644 index 0000000..618fc04 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_right/alienArm_right_10.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_01.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_01.png new file mode 100644 index 0000000..1ff0ba1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_01.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_02.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_02.png new file mode 100644 index 0000000..d3ea2a6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_02.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_03.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_03.png new file mode 100644 index 0000000..2766461 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_03.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_04.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_04.png new file mode 100644 index 0000000..d6fa18e Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_04.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_05.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_05.png new file mode 100644 index 0000000..08bebe1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_05.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_06.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_06.png new file mode 100644 index 0000000..4327443 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_06.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_07.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_07.png new file mode 100644 index 0000000..08bebe1 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_07.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_08.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_08.png new file mode 100644 index 0000000..d6fa18e Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_08.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_09.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_09.png new file mode 100644 index 0000000..2766461 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_09.png differ diff --git a/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_10.png b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_10.png new file mode 100644 index 0000000..d3ea2a6 Binary files /dev/null and b/resource/emoAnimations/emoArms/Still/test/alienArm_up/alienArm_up_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_01.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_01.png new file mode 100644 index 0000000..1645e84 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_02.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_02.png new file mode 100644 index 0000000..96c5675 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_03.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_03.png new file mode 100644 index 0000000..68498a0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_04.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_04.png new file mode 100644 index 0000000..41b72ec Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_05.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_05.png new file mode 100644 index 0000000..0f599c6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_06.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_06.png new file mode 100644 index 0000000..d789b03 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_07.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_07.png new file mode 100644 index 0000000..be9134b Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_08.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_08.png new file mode 100644 index 0000000..735b369 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_09.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_09.png new file mode 100644 index 0000000..86f8f89 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_10.png b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_10.png new file mode 100644 index 0000000..3fdcd12 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoL/alienArmLtoDL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_01.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_01.png new file mode 100644 index 0000000..a10a494 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_02.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_02.png new file mode 100644 index 0000000..73d5830 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_03.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_03.png new file mode 100644 index 0000000..16f7426 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_04.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_04.png new file mode 100644 index 0000000..fee113e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_05.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_05.png new file mode 100644 index 0000000..3002cc7 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_06.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_06.png new file mode 100644 index 0000000..a10a494 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_07.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_07.png new file mode 100644 index 0000000..2aef5e6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_08.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_08.png new file mode 100644 index 0000000..c348336 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_09.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_09.png new file mode 100644 index 0000000..be3e404 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_10.png b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_10.png new file mode 100644 index 0000000..6c8b716 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DLtoU/alienArmUtoDL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_01.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_01.png new file mode 100644 index 0000000..4098d93 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_02.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_02.png new file mode 100644 index 0000000..448eef9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_03.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_03.png new file mode 100644 index 0000000..c23212a Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_04.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_04.png new file mode 100644 index 0000000..c15048a Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_05.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_05.png new file mode 100644 index 0000000..d00e28d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_06.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_06.png new file mode 100644 index 0000000..4098d93 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_07.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_07.png new file mode 100644 index 0000000..03f5e3d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_08.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_08.png new file mode 100644 index 0000000..900ca38 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_09.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_09.png new file mode 100644 index 0000000..7a1c648 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_10.png b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_10.png new file mode 100644 index 0000000..ce95ac6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoD/alienArmDRtoD_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_01.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_01.png new file mode 100644 index 0000000..61f69fe Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_02.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_02.png new file mode 100644 index 0000000..9f73ac8 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_03.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_03.png new file mode 100644 index 0000000..29398fd Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_04.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_04.png new file mode 100644 index 0000000..ffaa5b5 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_05.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_05.png new file mode 100644 index 0000000..d00e28d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_06.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_06.png new file mode 100644 index 0000000..61f69fe Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_07.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_07.png new file mode 100644 index 0000000..734b44e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_08.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_08.png new file mode 100644 index 0000000..915d1ec Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_09.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_09.png new file mode 100644 index 0000000..dcfd946 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_10.png b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_10.png new file mode 100644 index 0000000..456dff9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoDL/alienArmDRtoDL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_01.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_01.png new file mode 100644 index 0000000..988b3d0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_02.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_02.png new file mode 100644 index 0000000..51df8fc Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_03.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_03.png new file mode 100644 index 0000000..ddc90ba Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_04.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_04.png new file mode 100644 index 0000000..47daf26 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_05.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_05.png new file mode 100644 index 0000000..d00e28d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_06.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_06.png new file mode 100644 index 0000000..988b3d0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_07.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_07.png new file mode 100644 index 0000000..b9097c0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_08.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_08.png new file mode 100644 index 0000000..0c1aaba Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_09.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_09.png new file mode 100644 index 0000000..0a26455 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_10.png b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_10.png new file mode 100644 index 0000000..eef2d5b Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DRtoL/alienArmDRtoL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_01.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_01.png new file mode 100644 index 0000000..45e5a87 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_02.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_02.png new file mode 100644 index 0000000..116e269 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_03.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_03.png new file mode 100644 index 0000000..63aa766 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_04.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_04.png new file mode 100644 index 0000000..a8c6109 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_05.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_05.png new file mode 100644 index 0000000..29fa3ef Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_06.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_06.png new file mode 100644 index 0000000..5a6d9a8 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_07.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_07.png new file mode 100644 index 0000000..d63f186 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_08.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_08.png new file mode 100644 index 0000000..bc156e9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_09.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_09.png new file mode 100644 index 0000000..7e2cf47 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_10.png b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_10.png new file mode 100644 index 0000000..bfef9c7 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoDL/alienArmDtoDL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_01.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_01.png new file mode 100644 index 0000000..3ac806e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_02.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_02.png new file mode 100644 index 0000000..229098b Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_03.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_03.png new file mode 100644 index 0000000..d6c1b13 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_04.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_04.png new file mode 100644 index 0000000..c0b57c3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_05.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_05.png new file mode 100644 index 0000000..9b42cc8 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_06.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_06.png new file mode 100644 index 0000000..eb00de7 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_07.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_07.png new file mode 100644 index 0000000..dd29a31 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_08.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_08.png new file mode 100644 index 0000000..4729058 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_09.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_09.png new file mode 100644 index 0000000..8049f4c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_10.png b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_10.png new file mode 100644 index 0000000..7c1fb48 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/DtoL/alienArmLtoD_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_01.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_01.png new file mode 100644 index 0000000..24058ca Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_02.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_02.png new file mode 100644 index 0000000..5785862 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_03.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_03.png new file mode 100644 index 0000000..3ef5297 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_04.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_04.png new file mode 100644 index 0000000..c589bb9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_05.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_05.png new file mode 100644 index 0000000..7c1fb48 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_06.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_06.png new file mode 100644 index 0000000..24058ca Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_07.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_07.png new file mode 100644 index 0000000..ec6b96d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_08.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_08.png new file mode 100644 index 0000000..54295c3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_09.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_09.png new file mode 100644 index 0000000..797c23a Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_10.png b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_10.png new file mode 100644 index 0000000..40bc13b Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoR/alienArmLtoR_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_01.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_01.png new file mode 100644 index 0000000..22de72e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_02.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_02.png new file mode 100644 index 0000000..b2eca9c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_03.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_03.png new file mode 100644 index 0000000..96f50fe Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_04.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_04.png new file mode 100644 index 0000000..b177daf Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_05.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_05.png new file mode 100644 index 0000000..e1dbfb4 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_06.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_06.png new file mode 100644 index 0000000..22de72e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_07.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_07.png new file mode 100644 index 0000000..fbd6faa Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_08.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_08.png new file mode 100644 index 0000000..0c01dc4 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_09.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_09.png new file mode 100644 index 0000000..9548a76 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_10.png b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_10.png new file mode 100644 index 0000000..5386a0f Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/LtoU/alienArmLtoU_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_01.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_01.png new file mode 100644 index 0000000..1f9d776 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_02.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_02.png new file mode 100644 index 0000000..2d42355 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_03.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_03.png new file mode 100644 index 0000000..9e05f99 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_04.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_04.png new file mode 100644 index 0000000..5f41faa Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_05.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_05.png new file mode 100644 index 0000000..5d2447c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_06.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_06.png new file mode 100644 index 0000000..1f9d776 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_07.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_07.png new file mode 100644 index 0000000..94a4cd2 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_08.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_08.png new file mode 100644 index 0000000..cf3a230 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_09.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_09.png new file mode 100644 index 0000000..ab44c1d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_10.png b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_10.png new file mode 100644 index 0000000..29751c6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoD/alienArmRtoD_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_01.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_01.png new file mode 100644 index 0000000..6eea5c5 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_02.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_02.png new file mode 100644 index 0000000..cbdf234 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_03.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_03.png new file mode 100644 index 0000000..e538003 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_04.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_04.png new file mode 100644 index 0000000..9a5b1ce Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_05.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_05.png new file mode 100644 index 0000000..e924d8b Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_06.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_06.png new file mode 100644 index 0000000..6eea5c5 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_07.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_07.png new file mode 100644 index 0000000..fed8b51 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_08.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_08.png new file mode 100644 index 0000000..ba0cbdf Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_09.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_09.png new file mode 100644 index 0000000..ea7e948 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_10.png b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_10.png new file mode 100644 index 0000000..e28456d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDL/alienArmRtoDL_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_01.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_01.png new file mode 100644 index 0000000..0350305 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_02.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_02.png new file mode 100644 index 0000000..0521ae3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_03.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_03.png new file mode 100644 index 0000000..46daffb Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_04.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_04.png new file mode 100644 index 0000000..ae47639 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_05.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_05.png new file mode 100644 index 0000000..112d9dd Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_06.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_06.png new file mode 100644 index 0000000..316fd8c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_07.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_07.png new file mode 100644 index 0000000..18e9a74 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_08.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_08.png new file mode 100644 index 0000000..3bf5ded Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_09.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_09.png new file mode 100644 index 0000000..48eba7c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_10.png b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_10.png new file mode 100644 index 0000000..d00e28d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/RtoDR/alienArmDRtoR_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_01.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_01.png new file mode 100644 index 0000000..eac4449 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_02.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_02.png new file mode 100644 index 0000000..5d979c6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_03.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_03.png new file mode 100644 index 0000000..2384e38 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_04.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_04.png new file mode 100644 index 0000000..8b49de6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_05.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_05.png new file mode 100644 index 0000000..19c57ed Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_06.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_06.png new file mode 100644 index 0000000..eac4449 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_07.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_07.png new file mode 100644 index 0000000..84c0000 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_08.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_08.png new file mode 100644 index 0000000..70ce50c Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_09.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_09.png new file mode 100644 index 0000000..a325d74 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_10.png b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_10.png new file mode 100644 index 0000000..166b329 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoD/alienArmDtoU_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_01.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_01.png new file mode 100644 index 0000000..4b49ee8 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_02.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_02.png new file mode 100644 index 0000000..b391198 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_03.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_03.png new file mode 100644 index 0000000..25360d6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_04.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_04.png new file mode 100644 index 0000000..cd177c3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_05.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_05.png new file mode 100644 index 0000000..2ea63bb Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_06.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_06.png new file mode 100644 index 0000000..4b49ee8 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_07.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_07.png new file mode 100644 index 0000000..442fee9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_08.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_08.png new file mode 100644 index 0000000..f2c592f Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_09.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_09.png new file mode 100644 index 0000000..0d3d7e9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_10.png b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_10.png new file mode 100644 index 0000000..d00e28d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoDR/alienArmDRtoU_10.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_01.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_01.png new file mode 100644 index 0000000..6360f4e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_01.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_02.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_02.png new file mode 100644 index 0000000..f71cd7e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_02.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_03.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_03.png new file mode 100644 index 0000000..15c8892 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_03.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_04.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_04.png new file mode 100644 index 0000000..e52217d Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_04.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_05.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_05.png new file mode 100644 index 0000000..5cd1390 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_05.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_06.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_06.png new file mode 100644 index 0000000..6360f4e Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_06.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_07.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_07.png new file mode 100644 index 0000000..abb6e08 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_07.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_08.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_08.png new file mode 100644 index 0000000..8534455 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_08.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_09.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_09.png new file mode 100644 index 0000000..532d1d2 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_09.png differ diff --git a/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_10.png b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_10.png new file mode 100644 index 0000000..4b1ff14 Binary files /dev/null and b/resource/koolAnimations/koolArms/Moving/UtoR/alienArmRtoU_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_01.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_01.png new file mode 100644 index 0000000..1e95242 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_02.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_02.png new file mode 100644 index 0000000..ac63989 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_03.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_03.png new file mode 100644 index 0000000..d42284d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_04.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_04.png new file mode 100644 index 0000000..60b5df0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_05.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_05.png new file mode 100644 index 0000000..38e1ed1 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_06.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_06.png new file mode 100644 index 0000000..5613a70 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_07.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_07.png new file mode 100644 index 0000000..38e1ed1 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_08.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_08.png new file mode 100644 index 0000000..60b5df0 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_09.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_09.png new file mode 100644 index 0000000..d42284d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_10.png b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_10.png new file mode 100644 index 0000000..ac63989 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownLeft/alienArm_downLeft_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_01.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_01.png new file mode 100644 index 0000000..7d4a2df Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_02.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_02.png new file mode 100644 index 0000000..294ef6c Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_03.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_03.png new file mode 100644 index 0000000..78d6bc6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_04.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_04.png new file mode 100644 index 0000000..1bbf68c Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_05.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_05.png new file mode 100644 index 0000000..017f38f Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_06.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_06.png new file mode 100644 index 0000000..4dc9bc1 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_07.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_07.png new file mode 100644 index 0000000..017f38f Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_08.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_08.png new file mode 100644 index 0000000..1bbf68c Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_09.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_09.png new file mode 100644 index 0000000..78d6bc6 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_10.png b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_10.png new file mode 100644 index 0000000..294ef6c Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArmDownRight/alienArmDownRight_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_01.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_01.png new file mode 100644 index 0000000..cd90097 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_02.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_02.png new file mode 100644 index 0000000..3e3fa71 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_03.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_03.png new file mode 100644 index 0000000..81a2936 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_04.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_04.png new file mode 100644 index 0000000..16b637d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_05.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_05.png new file mode 100644 index 0000000..f22156b Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_06.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_06.png new file mode 100644 index 0000000..68e116e Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_07.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_07.png new file mode 100644 index 0000000..f22156b Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_08.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_08.png new file mode 100644 index 0000000..16b637d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_09.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_09.png new file mode 100644 index 0000000..81a2936 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_10.png b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_10.png new file mode 100644 index 0000000..3e3fa71 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_down/alienArm_down_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_01.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_01.png new file mode 100644 index 0000000..eca0f95 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_02.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_02.png new file mode 100644 index 0000000..1311cb3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_03.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_03.png new file mode 100644 index 0000000..43aae24 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_04.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_04.png new file mode 100644 index 0000000..808255d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_05.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_05.png new file mode 100644 index 0000000..b95d928 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_06.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_06.png new file mode 100644 index 0000000..9386f47 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_07.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_07.png new file mode 100644 index 0000000..b95d928 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_08.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_08.png new file mode 100644 index 0000000..808255d Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_09.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_09.png new file mode 100644 index 0000000..43aae24 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_10.png b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_10.png new file mode 100644 index 0000000..1311cb3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_left/alienArm_left_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_01.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_01.png new file mode 100644 index 0000000..e2a01f9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_02.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_02.png new file mode 100644 index 0000000..864bf81 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_03.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_03.png new file mode 100644 index 0000000..e5622b3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_04.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_04.png new file mode 100644 index 0000000..a9013d4 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_05.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_05.png new file mode 100644 index 0000000..0917494 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_06.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_06.png new file mode 100644 index 0000000..52ec285 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_07.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_07.png new file mode 100644 index 0000000..0917494 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_08.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_08.png new file mode 100644 index 0000000..a9013d4 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_09.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_09.png new file mode 100644 index 0000000..e5622b3 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_10.png b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_10.png new file mode 100644 index 0000000..864bf81 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_right/alienArm_right_10.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_01.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_01.png new file mode 100644 index 0000000..8dd2749 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_01.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_02.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_02.png new file mode 100644 index 0000000..864ca4a Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_02.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_03.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_03.png new file mode 100644 index 0000000..86352b9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_03.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_04.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_04.png new file mode 100644 index 0000000..57b168f Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_04.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_05.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_05.png new file mode 100644 index 0000000..df5f559 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_05.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_06.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_06.png new file mode 100644 index 0000000..8e42841 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_06.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_07.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_07.png new file mode 100644 index 0000000..df5f559 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_07.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_08.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_08.png new file mode 100644 index 0000000..57b168f Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_08.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_09.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_09.png new file mode 100644 index 0000000..86352b9 Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_09.png differ diff --git a/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_10.png b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_10.png new file mode 100644 index 0000000..864ca4a Binary files /dev/null and b/resource/koolAnimations/koolArms/Still/alienArm_up/alienArm_up_10.png differ diff --git a/resource/koolAnimations/koolHurt/koolHurt_1.png b/resource/koolAnimations/koolHit/koolHurt_1.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_1.png rename to resource/koolAnimations/koolHit/koolHurt_1.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_2.png b/resource/koolAnimations/koolHit/koolHurt_2.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_2.png rename to resource/koolAnimations/koolHit/koolHurt_2.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_3.png b/resource/koolAnimations/koolHit/koolHurt_3.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_3.png rename to resource/koolAnimations/koolHit/koolHurt_3.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_4.png b/resource/koolAnimations/koolHit/koolHurt_4.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_4.png rename to resource/koolAnimations/koolHit/koolHurt_4.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_5.png b/resource/koolAnimations/koolHit/koolHurt_5.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_5.png rename to resource/koolAnimations/koolHit/koolHurt_5.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_6.png b/resource/koolAnimations/koolHit/koolHurt_6.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_6.png rename to resource/koolAnimations/koolHit/koolHurt_6.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_7.png b/resource/koolAnimations/koolHit/koolHurt_7.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_7.png rename to resource/koolAnimations/koolHit/koolHurt_7.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_8.png b/resource/koolAnimations/koolHit/koolHurt_8.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_8.png rename to resource/koolAnimations/koolHit/koolHurt_8.png diff --git a/resource/koolAnimations/koolHurt/koolHurt_9.png b/resource/koolAnimations/koolHit/koolHurt_9.png similarity index 100% rename from resource/koolAnimations/koolHurt/koolHurt_9.png rename to resource/koolAnimations/koolHit/koolHurt_9.png diff --git a/resource/scores b/resource/scores index 545d1a1..b4d6882 100644 --- a/resource/scores +++ b/resource/scores @@ -1,4 +1,5 @@ 52418 0 +57797 0 70979 0 78301 0 79581 0