From 123beb7881b21730cfdfd5853a0f4f1c970422b4 Mon Sep 17 00:00:00 2001 From: thmsn <9084377+thmsndk@users.noreply.github.com> Date: Tue, 23 Apr 2024 21:06:35 +0200 Subject: [PATCH] added missing shield projectiles --- design/animations.py | 36 ++++++++++++++++++++++++++++++++++++ design/projectiles.py | 20 ++++++++++++++++++++ 2 files changed, 56 insertions(+) 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,