summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua
new file mode 100644
index 0000000..aa06f93
--- /dev/null
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/crouch_down.lua
@@ -0,0 +1,25 @@
+return {
+ love.graphics.newQuad(
+ metaSprites.bola.x * 0,
+ metaSprites.bola.y * 2,
+ metaSprites.bola.x,
+ metaSprites.bola.y,
+ metaSprites.bola.image:getDimensions()
+ ),
+ love.graphics.newQuad(
+ metaSprites.bola.x * 1,
+ metaSprites.bola.y * 2,
+ metaSprites.bola.x,
+ metaSprites.bola.y / 4,
+ metaSprites.bola.image:getDimensions()
+ ),
+ love.graphics.newQuad(
+ metaSprites.bola.x * 2,
+ (metaSprites.bola.y * 2) + (metaSprites.bola.y / 2),
+ metaSprites.bola.x,
+ metaSprites.bola.y / 2,
+ metaSprites.bola.image:getDimensions()
+ ),
+ start = 1,
+ fps = 9,
+}