diff --git a/design/animations.py b/design/animations.py index 3831959a..f8bea367 100644 --- a/design/animations.py +++ b/design/animations.py @@ -318,6 +318,42 @@ "size":0.75, "front":True, }, + "throw_sshield":{ + "file":"/images/sprites/animations/throw_sshield.png", + "frames":4, + "continuous":True, + "directional":True, + "speed":500, + "size":0.75, + "front":True, + }, + "throw_mshield":{ + "file":"/images/sprites/animations/throw_mshield.png", + "frames":4, + "continuous":True, + "directional":True, + "speed":500, + "size":0.75, + "front":True, + }, + "throw_xshield":{ + "file":"/images/sprites/animations/throw_xshield.png", + "frames":4, + "continuous":True, + "directional":True, + "speed":500, + "size":0.75, + "front":True, + }, + "throw_tigershield":{ + "file":"/images/sprites/animations/throw_tigershield.png", + "frames":4, + "continuous":True, + "directional":True, + "speed":500, + "size":0.75, + "front":True, + }, "throw_shield":{ "file":"/images/sprites/animations/throw_shield.png", "frames":4, diff --git a/design/projectiles.py b/design/projectiles.py index adfcbed0..5b77eb80 100644 --- a/design/projectiles.py +++ b/design/projectiles.py @@ -128,11 +128,31 @@ "speed":220, "hit_animation":"explode_c", }, + "sshield":{ + "animation":"throw_sshield", + "speed":220, + "hit_animation":"explode_c", + }, "shield":{ "animation":"throw_shield", "speed":220, "hit_animation":"explode_c", }, + "mshield":{ + "animation":"throw_mshield", + "speed":220, + "hit_animation":"explode_c", + }, + "xshield":{ + "animation":"throw_xshield", + "speed":220, + "hit_animation":"explode_c", + }, + "tigershield":{ + "animation":"throw_tigershield", + "speed":220, + "hit_animation":"explode_c", + }, "crusader_shield":{ "animation":"throw_crusader_shield", "speed":220,