Skip to content

Commit

Permalink
added missing shield projectiles
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsndk committed Apr 23, 2024
1 parent f643f31 commit ed9162e
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
36 changes: 36 additions & 0 deletions design/animations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
20 changes: 20 additions & 0 deletions design/projectiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ed9162e

Please sign in to comment.