From 9ad85e743e18307e486f7593a8d09d5d06aff3e0 Mon Sep 17 00:00:00 2001
From: Ryan <rgrzanic@hotmail.com>
Date: Thu, 25 Jul 2019 21:27:31 -0600
Subject: [PATCH] balloons work now

---
 objects/obj_blobleshoot_balloon/Alarm_0.gml   |   2 +
 ...n_9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4.gml |   7 ++
 objects/obj_blobleshoot_balloon/Create_0.gml  |   5 +-
 objects/obj_blobleshoot_balloon/Step_0.gml    |  12 +++
 .../obj_blobleshoot_balloon.yy                |  32 ++++++-
 .../obj_blobleshoot_generator/Create_0.gml    |  11 ++-
 objects/obj_blobleshoot_generator/Step_0.gml  |  13 ++-
 objects/obj_blobleshoot_player/Step_0.gml     |   1 +
 .../12025809-5af9-4449-9da7-5c10fc6b2333.png  | Bin 0 -> 340 bytes
 .../5791b07f-2017-41b2-bd25-a37944086600.png  | Bin 0 -> 315 bytes
 .../8f73374a-4351-4584-9294-233bbc439fed.png  | Bin 0 -> 344 bytes
 .../a13504c4-2f10-4573-a5f1-9ba4b4e0b032.png  | Bin 203 -> 0 bytes
 .../eb094d7c-7c46-4c2f-ac50-845aeeff25ae.png  | Bin 0 -> 336 bytes
 .../02622141-e140-4990-973e-863b2f30c166.png  | Bin 0 -> 345 bytes
 .../02622141-e140-4990-973e-863b2f30c166.png  | Bin 0 -> 322 bytes
 .../02622141-e140-4990-973e-863b2f30c166.png  | Bin 0 -> 350 bytes
 .../ffe8397b-da8e-4ecb-b582-07da7ce293b2.png  | Bin 203 -> 0 bytes
 .../02622141-e140-4990-973e-863b2f30c166.png  | Bin 0 -> 342 bytes
 .../spr_blobleshoot_balloon.yy                |  88 +++++++++++++++---
 19 files changed, 152 insertions(+), 19 deletions(-)
 create mode 100644 objects/obj_blobleshoot_balloon/Alarm_0.gml
 create mode 100644 objects/obj_blobleshoot_balloon/Collision_9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4.gml
 create mode 100644 objects/obj_blobleshoot_balloon/Step_0.gml
 create mode 100644 sprites/spr_blobleshoot_balloon/12025809-5af9-4449-9da7-5c10fc6b2333.png
 create mode 100644 sprites/spr_blobleshoot_balloon/5791b07f-2017-41b2-bd25-a37944086600.png
 create mode 100644 sprites/spr_blobleshoot_balloon/8f73374a-4351-4584-9294-233bbc439fed.png
 delete mode 100644 sprites/spr_blobleshoot_balloon/a13504c4-2f10-4573-a5f1-9ba4b4e0b032.png
 create mode 100644 sprites/spr_blobleshoot_balloon/eb094d7c-7c46-4c2f-ac50-845aeeff25ae.png
 create mode 100644 sprites/spr_blobleshoot_balloon/layers/12025809-5af9-4449-9da7-5c10fc6b2333/02622141-e140-4990-973e-863b2f30c166.png
 create mode 100644 sprites/spr_blobleshoot_balloon/layers/5791b07f-2017-41b2-bd25-a37944086600/02622141-e140-4990-973e-863b2f30c166.png
 create mode 100644 sprites/spr_blobleshoot_balloon/layers/8f73374a-4351-4584-9294-233bbc439fed/02622141-e140-4990-973e-863b2f30c166.png
 delete mode 100644 sprites/spr_blobleshoot_balloon/layers/a13504c4-2f10-4573-a5f1-9ba4b4e0b032/ffe8397b-da8e-4ecb-b582-07da7ce293b2.png
 create mode 100644 sprites/spr_blobleshoot_balloon/layers/eb094d7c-7c46-4c2f-ac50-845aeeff25ae/02622141-e140-4990-973e-863b2f30c166.png

diff --git a/objects/obj_blobleshoot_balloon/Alarm_0.gml b/objects/obj_blobleshoot_balloon/Alarm_0.gml
new file mode 100644
index 0000000..e624fe4
--- /dev/null
+++ b/objects/obj_blobleshoot_balloon/Alarm_0.gml
@@ -0,0 +1,2 @@
+stick = 0;
+instance_destroy()
\ No newline at end of file
diff --git a/objects/obj_blobleshoot_balloon/Collision_9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4.gml b/objects/obj_blobleshoot_balloon/Collision_9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4.gml
new file mode 100644
index 0000000..39217f6
--- /dev/null
+++ b/objects/obj_blobleshoot_balloon/Collision_9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4.gml
@@ -0,0 +1,7 @@
+stick = 1;
+if !alarm[0]
+{
+	alarm[0] = 120
+	
+	
+}
\ No newline at end of file
diff --git a/objects/obj_blobleshoot_balloon/Create_0.gml b/objects/obj_blobleshoot_balloon/Create_0.gml
index fb1ef78..dba1bac 100644
--- a/objects/obj_blobleshoot_balloon/Create_0.gml
+++ b/objects/obj_blobleshoot_balloon/Create_0.gml
@@ -1,2 +1,5 @@
+image_speed = 0;
+image_index = (irandom_range(0,3))
 image_xscale = 5;
-image_yscale = 5;
\ No newline at end of file
+image_yscale = 5;
+stick = 0;
\ No newline at end of file
diff --git a/objects/obj_blobleshoot_balloon/Step_0.gml b/objects/obj_blobleshoot_balloon/Step_0.gml
new file mode 100644
index 0000000..dfc2980
--- /dev/null
+++ b/objects/obj_blobleshoot_balloon/Step_0.gml
@@ -0,0 +1,12 @@
+if stick = 1
+{
+	x = (obj_blobleshoot_player.x)
+	y = (obj_blobleshoot_player.y - 200)
+	
+	with obj_blobleshoot_player
+	{
+		launchspeedy  -= .25
+		launchspeedx += .05
+		
+	}
+}
\ No newline at end of file
diff --git a/objects/obj_blobleshoot_balloon/obj_blobleshoot_balloon.yy b/objects/obj_blobleshoot_balloon/obj_blobleshoot_balloon.yy
index 5f79289..7d81600 100644
--- a/objects/obj_blobleshoot_balloon/obj_blobleshoot_balloon.yy
+++ b/objects/obj_blobleshoot_balloon/obj_blobleshoot_balloon.yy
@@ -13,6 +13,36 @@
             "enumb": 0,
             "eventtype": 0,
             "m_owner": "3ccf6ec1-36d6-4ff1-9d21-4965ef1fa613"
+        },
+        {
+            "id": "9a0d71f7-80e8-4fa4-a5a4-511b3fc8c8e4",
+            "modelName": "GMEvent",
+            "mvc": "1.0",
+            "IsDnD": false,
+            "collisionObjectId": "01e9e370-a056-45e3-ac57-bd2cedd9a804",
+            "enumb": 0,
+            "eventtype": 4,
+            "m_owner": "3ccf6ec1-36d6-4ff1-9d21-4965ef1fa613"
+        },
+        {
+            "id": "8d4df4a7-92c3-4e8f-8687-f137fe870c93",
+            "modelName": "GMEvent",
+            "mvc": "1.0",
+            "IsDnD": false,
+            "collisionObjectId": "00000000-0000-0000-0000-000000000000",
+            "enumb": 0,
+            "eventtype": 3,
+            "m_owner": "3ccf6ec1-36d6-4ff1-9d21-4965ef1fa613"
+        },
+        {
+            "id": "5b3216db-cc23-4a17-9fb7-4d15ff927d91",
+            "modelName": "GMEvent",
+            "mvc": "1.0",
+            "IsDnD": false,
+            "collisionObjectId": "00000000-0000-0000-0000-000000000000",
+            "enumb": 0,
+            "eventtype": 2,
+            "m_owner": "3ccf6ec1-36d6-4ff1-9d21-4965ef1fa613"
         }
     ],
     "maskSpriteId": "00000000-0000-0000-0000-000000000000",
@@ -33,6 +63,6 @@
     "physicsStartAwake": true,
     "properties": null,
     "solid": false,
-    "spriteId": "00000000-0000-0000-0000-000000000000",
+    "spriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
     "visible": true
 }
\ No newline at end of file
diff --git a/objects/obj_blobleshoot_generator/Create_0.gml b/objects/obj_blobleshoot_generator/Create_0.gml
index 6fd9eed..f84bd1f 100644
--- a/objects/obj_blobleshoot_generator/Create_0.gml
+++ b/objects/obj_blobleshoot_generator/Create_0.gml
@@ -2,9 +2,18 @@ xlim = 100000
 ylim = 4900
 
 
-gen_coin_limit = (xlim/4000)
+gen_coin_limit = (xlim/200)
 gen_pool_limit = 20
+
+
+
 gen_balloon_limit = 20
+gen_balloon_lowlim = 2000
+gen_balloon_highlim = 4000
+
+
+
+
 gen_trampoline_limit = (xlim / 4000)
 gen_cloud_limit = (xlim / 10000)
 
diff --git a/objects/obj_blobleshoot_generator/Step_0.gml b/objects/obj_blobleshoot_generator/Step_0.gml
index e677219..b802427 100644
--- a/objects/obj_blobleshoot_generator/Step_0.gml
+++ b/objects/obj_blobleshoot_generator/Step_0.gml
@@ -2,11 +2,14 @@
 
 if gen_balloon < gen_balloon_limit
 {
-	inst = instance_create_depth((irandom_range(2000, xlim)), 100, -3, obj_blobleshoot_balloon)
-	{
-		
-		
-	}
+	inst = instance_create_depth((irandom_range(2000, xlim)), (irandom_range(gen_balloon_lowlim, gen_balloon_highlim)), -2, obj_blobleshoot_balloon)
+	with inst
+		{
+			if (place_meeting(x,y,obj_blobleshoot_balloon))
+			{
+				instance_destroy()
+			}
+		}
 		gen_balloon +=1
 }
 
diff --git a/objects/obj_blobleshoot_player/Step_0.gml b/objects/obj_blobleshoot_player/Step_0.gml
index 67e6813..a443422 100644
--- a/objects/obj_blobleshoot_player/Step_0.gml
+++ b/objects/obj_blobleshoot_player/Step_0.gml
@@ -9,6 +9,7 @@ launchspeedy = (-launchspeedy * .8)
 if (place_meeting(x,y+launchspeedy,obj_blobleshoot_trampoline)) || (place_meeting(x,y+launchspeedy,obj_blobleshoot_trampoline)) 
 {
 launchspeedy = ((-launchspeedy * 1.2) - 5)
+launchspeedx = (launchspeedx * 1.1)
 }
 
 
diff --git a/sprites/spr_blobleshoot_balloon/12025809-5af9-4449-9da7-5c10fc6b2333.png b/sprites/spr_blobleshoot_balloon/12025809-5af9-4449-9da7-5c10fc6b2333.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8930f3b8ba7b29ffbc90c474fb74bb1c22547de
GIT binary patch
literal 340
zcmV-a0jvIrP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003SNkl<Zc%1Fn
zZ3@CL3<h8aJA&Xvy#EQj$iO>HD|QrF^YJFDT}gfkj=oRRxH0DoRx9z{q*-W2f*;pg
z^@96z$v6>23SfhC<!hu631F23Gmt8R13=-w5DGy7%;6G*b_m_825{Sbu38tm?1203
zbM1AZ%MJt}00EfNZ}o_K!F%1$`W&EX1)v6SpM$;grvS~00=RXdwtEiHq&R@N3)Jo<
z026`>mjWP!BwPbfA*A72fC!-pM*tfleJCN{U{yE@*g}dIP<5~sP==B(pGO1C6@UPo
z9zgwF*94FXz6W>#Ocj6tcmV$TG|Z1<xP~}_0HlHk(d$_N58^OK&;<aR11|tP2SXh}
m7XbAfcmkj~814wp2Y3N~aBe9M^f{sc0000<MNUMnLSTZWqJdoi

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/5791b07f-2017-41b2-bd25-a37944086600.png b/sprites/spr_blobleshoot_balloon/5791b07f-2017-41b2-bd25-a37944086600.png
new file mode 100644
index 0000000000000000000000000000000000000000..760f6e9b9532f077bbd373ce6e51a58886a7545c
GIT binary patch
literal 315
zcmV-B0mS}^P)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk00033Nkl<Zc%1Fn
zYYM_J5CmWgJ%Zpxy#EQjh~OQn5mSOR`<iWNVdj@$$$VLBq|TRE7U8|gv(OwVeq3+e
z3+}IH#hD;hfLdHrudzZbfW=a*K)MJG5GwzNNC*i4ms=3tn=m~+K-%tWdQ&*$1k!h3
zvo(c7PJjRc2$;%ub&s>)v+j3&4KOqW^Z@Di!Pe(50ft2aq)nl>dkruo8UUVxw0jEx
zLTKeyKnP(e_W)c7Yq=L-LU_s}fE7_*w2)u1t2_!=OPU8zcQFcROT~xJy#a6tAmH=>
z>F>HBfRgYTkOhE3009Ib0Qe9>0VU8OlmUQ4009ILKmY*<0RAN`c>_v8XDa3t9ytI2
N002ovPDHLkV1huMbLap7

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/8f73374a-4351-4584-9294-233bbc439fed.png b/sprites/spr_blobleshoot_balloon/8f73374a-4351-4584-9294-233bbc439fed.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a43310f19c2428df26271b3904fe41408079b2e
GIT binary patch
literal 344
zcmV-e0jK_nP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003WNkl<Zc%1Fm
zeF}m=5C!lAj}UZ`?tg+V5_AV^qZJ8vKHfZCk$HawiSM^NnmJyuOu~1A=R_k?{J7ql
z2i#xJiZem10JXTL9%F@A0F$Lyfiw{s04o27NC*iKF1H}O7a=_@0B!X(tz9_e4$xO$
zv$hL|+<^onAOS<USGV{r_?-89ehsi|63_zBuY<MuOMu-X0cg9>TD=C?B^n^S3)1Q>
zfDl3}w*nx9rQ8E>A*|(IfC=F#M*uUTd{{z$#jbJ`FqbS|K;6Yrz_L_)`P>>1P686Z
z0>F0y15j^8D5n`g2{Z;403O4sMo{7&0}}v^;dCQNKmrob6>x}WLAR$N9OhrLu7Hwm
q{|Q530O0Ls0ZO{QoWkWSKqzk<eQqje$+DjS0000<MNUMnLSTY;af4t0

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/a13504c4-2f10-4573-a5f1-9ba4b4e0b032.png b/sprites/spr_blobleshoot_balloon/a13504c4-2f10-4573-a5f1-9ba4b4e0b032.png
deleted file mode 100644
index e3f2170890128a24f217a2005fd1f4353fa68bc3..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 203
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=lRRA<Ln`LHy<o`8z`$|9fbUPX
zn;U-^>*=z2(XtCn9oRE?FEB<imo!{spcA+3(E>)s3ZCSTK-V#Ny85}Sb4q9e03jPY
AOaK4?

diff --git a/sprites/spr_blobleshoot_balloon/eb094d7c-7c46-4c2f-ac50-845aeeff25ae.png b/sprites/spr_blobleshoot_balloon/eb094d7c-7c46-4c2f-ac50-845aeeff25ae.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e0fc6ed102371da6c2d7798636f1e8b31de4224
GIT binary patch
literal 336
zcmV-W0k8gvP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003ONkl<Zc%1Fn
zYYM_J5CmWgJ%Zpxy#EQjh~OQn5mSnEUz2HC%FZvr()qH9QXMZ?Cgr^$a-$I`eq3+j
z1^3sp;#?3fz$~t**LWcwz~m`5AR@v7K;{1s4WR*=%RPwbA*4qF&{kg~P2rFeps&7W
zZ3>5+KmrnwfT4U=xA-pj-1mEb3(z$QkO1^^u(tmipj$KmZ3@!rEkKu8faWP^tM>q!
z5LUSt03kf(5kLsxEsp|Rh)6jCm=Wd067nk!m7{>UWbp$uT-*v+ma0EKw+3i`RCEE9
zz^i8gnv#G7Bp?9^NB{${>+?W;Ac1p=EhvGvf%QZLZ^LP}AOR)NL1Y2ogUH^3@D!K;
iXbS8J>~;p=B;XB#Gj1yBOuUQ$0000<MNUMnLSTa8>xLZw

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/layers/12025809-5af9-4449-9da7-5c10fc6b2333/02622141-e140-4990-973e-863b2f30c166.png b/sprites/spr_blobleshoot_balloon/layers/12025809-5af9-4449-9da7-5c10fc6b2333/02622141-e140-4990-973e-863b2f30c166.png
new file mode 100644
index 0000000000000000000000000000000000000000..09d51c10eaec4e9594cbaf21cf6a0dfdd226857b
GIT binary patch
literal 345
zcmV-f0jB<mP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003XNkl<Zc%1Fn
zZ4Sa93<h9Hb_5eI;{8wHMNGT{%8w>w($X&&TiRbHPTmLTzT9%oH)*Am&>#KAOOmlR
zP4Mgf=pMs`umGH3C^&`-=>p0?oL~w<AxMBWd=H@zD8M6}gAg_0h-v~nXAgy~!g?z(
zV)jt2RakEY0uX=zlyh{{wcz=A|J|O~TY&(S8qo)>{YL>a3k7(t0ycXRFsn#_$0|^>
z?*godUN{S&MR3B|04ahSE&^~7l5jDgMwHJrqy)qFlJQihA%xVg>C#{mpbqW5d=3S8
zQ~&~SZUFUn-4sA6%Qe6SV66ZIzzjI_ZdgB@90KsD0Js1wjp%YOur%T|wqOZ>whvqY
rmOi-77AyhK^nn{d+XvU$f>Q#%ufM~ABBIZ^00000NkvXXu0mjf#<7ZC

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/layers/5791b07f-2017-41b2-bd25-a37944086600/02622141-e140-4990-973e-863b2f30c166.png b/sprites/spr_blobleshoot_balloon/layers/5791b07f-2017-41b2-bd25-a37944086600/02622141-e140-4990-973e-863b2f30c166.png
new file mode 100644
index 0000000000000000000000000000000000000000..22ca355988c95bf7b125266c89d4df61255adccb
GIT binary patch
literal 322
zcmeAS@N?(olHy`uVBq!ia0vp^3P9|@!3HF&`%2d_Ffej@x;TbZ%z1kwk?W8F4{HLq
zb<+daJ^wlPbUct<^;1ye))LRj(>UM%6`E5U|N7cS*{#>Q&6kRNbf5pRD}7D!vLA(e
zdHXjy`7n4Jwgc%l2B{N4YaC5lxMt}7Z_D5ioDi7jxWn&|=u0M}^z#$L9@c1YNcuMC
zp4OavR-hXgcDaSWW&M8r^Yd>t`$QQUHa)U=@%O({Lb{8?GcAwJ;f%W%F&Tw9&i*SP
z;M#M_w;{4+=^dUAN^73#HHbdcEN6~lsm)UiIdi}I*z8?AJD1e@d>3nH$bI?ZVX>xy
zG6Tbh`wVYO?}{;~Zem};u!s?8-!ewY*#R65oq0})4sIX^06~J(ghKTtdl>)3ud0u&
RJz@tE^K|udS?83{1OSzle|i7_

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/layers/8f73374a-4351-4584-9294-233bbc439fed/02622141-e140-4990-973e-863b2f30c166.png b/sprites/spr_blobleshoot_balloon/layers/8f73374a-4351-4584-9294-233bbc439fed/02622141-e140-4990-973e-863b2f30c166.png
new file mode 100644
index 0000000000000000000000000000000000000000..24a66ee0814098eb46c5d36b99bebff8c88db50c
GIT binary patch
literal 350
zcmV-k0iphhP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003cNkl<Zc%1Fm
zZ3@CL3<h8eJA&Xvy#EQjh~OQj`4K3yP4m^IjJ&@DXY(}K+_vreev_t@(*4nIy&_p_
z(-eN)AH!p~5Eg(_7=y=fAwvKx#3@WcC<F=67C%BLL>J&uoP!XZgfr3vc<vt4>%w{+
zn6Z0Is|)LOAOQ(T09>Q9{tKR;_uuV#y$&P*GUGgG&A$scGhKjZ7kaxV0cV8-cyxi<
z{SaV9jEb`WS_G#!8z4n+i;DnUgrv9_P$S@T4S~Y=y<|PrWr#)U*K}!N6QC|Sdik6R
z@JIp@-~zB*31&e3#}opv#tonygA2eihU<&~q8Wo5Ks$zOjUWLDNI)oHiF-lV-Ov)Z
wN3u`=B<z{c8Z*Gseir~F^ySo2+y!9G7fYAMe^{E_6#xJL07*qoM6N<$f*UA~ApigX

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/layers/a13504c4-2f10-4573-a5f1-9ba4b4e0b032/ffe8397b-da8e-4ecb-b582-07da7ce293b2.png b/sprites/spr_blobleshoot_balloon/layers/a13504c4-2f10-4573-a5f1-9ba4b4e0b032/ffe8397b-da8e-4ecb-b582-07da7ce293b2.png
deleted file mode 100644
index e3f2170890128a24f217a2005fd1f4353fa68bc3..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 203
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=lRRA<Ln`LHy<o`8z`$|9fbUPX
zn;U-^>*=z2(XtCn9oRE?FEB<imo!{spcA+3(E>)s3ZCSTK-V#Ny85}Sb4q9e03jPY
AOaK4?

diff --git a/sprites/spr_blobleshoot_balloon/layers/eb094d7c-7c46-4c2f-ac50-845aeeff25ae/02622141-e140-4990-973e-863b2f30c166.png b/sprites/spr_blobleshoot_balloon/layers/eb094d7c-7c46-4c2f-ac50-845aeeff25ae/02622141-e140-4990-973e-863b2f30c166.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ca2552a37d96ab6cb0af079d46f3aa17fad4de5
GIT binary patch
literal 342
zcmV-c0jd6pP)<h;3K|Lk000e1NJLTq001BW002M;1^@s6dyaLk0003UNkl<Zc%1Fn
z?F|AU3<h9HZUhq-asLTi#KaxY{%As!mVN;j)BZB?<b5cdavrtTi?&KB<cB`v70p<O
zCHQf@4X=?xL;y)J7G5KT3;{5ZB$$J62o_)s|Aue~5)ctCL8vz2jOqd+XOBg7;d~vK
zF?+0D7tYs#1SB8<aF5RVF1Wv*KR?gs>p%jaX6%FB`jdc_MFJwbK+T>7tSS}|(FJby
zLx2}C3Ks#a2uZjYphZZ-RRAeM6Rrld2zcE>AQ<1*jAyzHF{FJ=*9N-)ZRqIXb1H!Q
zqhbjF$}{^AfVUEmfCMBU0SRyeww?#t<JlHKM1=r6%MfxR@+`xDEI|UGtQ#=|;Ms_w
oOJM0j7{J<v&<<?d1D;C28`jvyf1m{BCjbBd07*qoM6N<$f@A4~r~m)}

literal 0
HcmV?d00001

diff --git a/sprites/spr_blobleshoot_balloon/spr_blobleshoot_balloon.yy b/sprites/spr_blobleshoot_balloon/spr_blobleshoot_balloon.yy
index a5ad335..bf2f99c 100644
--- a/sprites/spr_blobleshoot_balloon/spr_blobleshoot_balloon.yy
+++ b/sprites/spr_blobleshoot_balloon/spr_blobleshoot_balloon.yy
@@ -6,9 +6,9 @@
     "For3D": false,
     "HTile": false,
     "VTile": false,
-    "bbox_bottom": 0,
-    "bbox_left": 0,
-    "bbox_right": 0,
+    "bbox_bottom": 63,
+    "bbox_left": 4,
+    "bbox_right": 28,
     "bbox_top": 0,
     "bboxmode": 0,
     "colkind": 1,
@@ -16,24 +16,90 @@
     "edgeFiltering": false,
     "frames": [
         {
-            "id": "a13504c4-2f10-4573-a5f1-9ba4b4e0b032",
+            "id": "8f73374a-4351-4584-9294-233bbc439fed",
             "modelName": "GMSpriteFrame",
             "mvc": "1.0",
             "SpriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
             "compositeImage": {
-                "id": "ddafedf5-19ee-4ef2-9c2d-e8e63571b026",
+                "id": "9a2337df-17c7-4cc6-b25f-d09f3816370e",
                 "modelName": "GMSpriteImage",
                 "mvc": "1.0",
-                "FrameId": "a13504c4-2f10-4573-a5f1-9ba4b4e0b032",
+                "FrameId": "8f73374a-4351-4584-9294-233bbc439fed",
                 "LayerId": "00000000-0000-0000-0000-000000000000"
             },
             "images": [
                 {
-                    "id": "b9ded536-4eec-4301-881b-a5f738a0924f",
+                    "id": "16537729-e390-419a-850f-a3ded3027a94",
                     "modelName": "GMSpriteImage",
                     "mvc": "1.0",
-                    "FrameId": "a13504c4-2f10-4573-a5f1-9ba4b4e0b032",
-                    "LayerId": "ffe8397b-da8e-4ecb-b582-07da7ce293b2"
+                    "FrameId": "8f73374a-4351-4584-9294-233bbc439fed",
+                    "LayerId": "02622141-e140-4990-973e-863b2f30c166"
+                }
+            ]
+        },
+        {
+            "id": "eb094d7c-7c46-4c2f-ac50-845aeeff25ae",
+            "modelName": "GMSpriteFrame",
+            "mvc": "1.0",
+            "SpriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
+            "compositeImage": {
+                "id": "8eaa1ebf-8531-4764-9e8e-cb5ee1cf4d91",
+                "modelName": "GMSpriteImage",
+                "mvc": "1.0",
+                "FrameId": "eb094d7c-7c46-4c2f-ac50-845aeeff25ae",
+                "LayerId": "00000000-0000-0000-0000-000000000000"
+            },
+            "images": [
+                {
+                    "id": "b83b5b27-4643-4bec-9753-9f74f0894ef4",
+                    "modelName": "GMSpriteImage",
+                    "mvc": "1.0",
+                    "FrameId": "eb094d7c-7c46-4c2f-ac50-845aeeff25ae",
+                    "LayerId": "02622141-e140-4990-973e-863b2f30c166"
+                }
+            ]
+        },
+        {
+            "id": "5791b07f-2017-41b2-bd25-a37944086600",
+            "modelName": "GMSpriteFrame",
+            "mvc": "1.0",
+            "SpriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
+            "compositeImage": {
+                "id": "8ceb8353-ecba-4470-9c2b-b384eac7797b",
+                "modelName": "GMSpriteImage",
+                "mvc": "1.0",
+                "FrameId": "5791b07f-2017-41b2-bd25-a37944086600",
+                "LayerId": "00000000-0000-0000-0000-000000000000"
+            },
+            "images": [
+                {
+                    "id": "717d572d-0f73-4576-ae98-d03527d50448",
+                    "modelName": "GMSpriteImage",
+                    "mvc": "1.0",
+                    "FrameId": "5791b07f-2017-41b2-bd25-a37944086600",
+                    "LayerId": "02622141-e140-4990-973e-863b2f30c166"
+                }
+            ]
+        },
+        {
+            "id": "12025809-5af9-4449-9da7-5c10fc6b2333",
+            "modelName": "GMSpriteFrame",
+            "mvc": "1.0",
+            "SpriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
+            "compositeImage": {
+                "id": "854225e1-5777-4678-a716-2e6c3972dcdc",
+                "modelName": "GMSpriteImage",
+                "mvc": "1.0",
+                "FrameId": "12025809-5af9-4449-9da7-5c10fc6b2333",
+                "LayerId": "00000000-0000-0000-0000-000000000000"
+            },
+            "images": [
+                {
+                    "id": "0a41a1e5-310d-4b39-9885-de97ee7b3896",
+                    "modelName": "GMSpriteImage",
+                    "mvc": "1.0",
+                    "FrameId": "12025809-5af9-4449-9da7-5c10fc6b2333",
+                    "LayerId": "02622141-e140-4990-973e-863b2f30c166"
                 }
             ]
         }
@@ -43,7 +109,7 @@
     "height": 64,
     "layers": [
         {
-            "id": "ffe8397b-da8e-4ecb-b582-07da7ce293b2",
+            "id": "02622141-e140-4990-973e-863b2f30c166",
             "modelName": "GMImageLayer",
             "mvc": "1.0",
             "SpriteId": "458d7dfd-8492-4d29-96ef-d2a4d5d3fc68",
@@ -64,7 +130,7 @@
     "swfPrecision": 2.525,
     "textureGroupId": "1225f6b0-ac20-43bd-a82e-be73fa0b6f4f",
     "type": 0,
-    "width": 64,
+    "width": 32,
     "xorig": 0,
     "yorig": 0
 }
\ No newline at end of file