summaryrefslogtreecommitdiff
path: root/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua')
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua
index b84ffb5..edfa741 100644
--- a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua
+++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/bola/origin.lua
@@ -1,4 +1,23 @@
return {
x = metaSprites.bola.x / 2,
y = metaSprites.bola.y / 2,
+ crouchDown = {
+ y = {
+ metaSprites.bola.x / 2,
+ (metaSprites.bola.y / 2) - (metaSprites.bola.y / 4),
+ (metaSprites.bola.y / 2) - (metaSprites.bola.y / 2),
+ },
+ },
+ crouch = {
+ y = {
+ (metaSprites.bola.y / 2) - (metaSprites.bola.y / 2),
+ },
+ },
+ standUp = {
+ y = {
+ (metaSprites.bola.y / 2) - (metaSprites.bola.y / 2),
+ (metaSprites.bola.y / 2) - (metaSprites.bola.y / 4),
+ metaSprites.bola.x / 2,
+ },
+ },
}