summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-16 19:49:31 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-16 19:49:31 -0600
commit760420412d591155c319f17d1a01d7edf7e5c01b (patch)
treef0a6ac20cd4de45418a90fd3d14f2a497061056b
parenta472a321179268710722232ee61aa04b369c627c (diff)
Add ROBLOX_OOF.MP3
-rw-r--r--funny_sounds/ROBLOX Oof Sound Effect.mp3bin0 -> 105148 bytes
-rw-r--r--funny_sounds/ROBLOX Oof Sound Effect.mp3.import19
-rw-r--r--scenes/microgames/fishin/fishin.gd2
-rw-r--r--scenes/microgames/fishin/node_2d.tscn10
4 files changed, 30 insertions, 1 deletions
diff --git a/funny_sounds/ROBLOX Oof Sound Effect.mp3 b/funny_sounds/ROBLOX Oof Sound Effect.mp3
new file mode 100644
index 0000000..a6fd66f
--- /dev/null
+++ b/funny_sounds/ROBLOX Oof Sound Effect.mp3
Binary files differ
diff --git a/funny_sounds/ROBLOX Oof Sound Effect.mp3.import b/funny_sounds/ROBLOX Oof Sound Effect.mp3.import
new file mode 100644
index 0000000..8a24f88
--- /dev/null
+++ b/funny_sounds/ROBLOX Oof Sound Effect.mp3.import
@@ -0,0 +1,19 @@
+[remap]
+
+importer="mp3"
+type="AudioStreamMP3"
+uid="uid://beunakwyi8i82"
+path="res://.godot/imported/ROBLOX Oof Sound Effect.mp3-8624320351dd8252c06c13358f68da4e.mp3str"
+
+[deps]
+
+source_file="res://funny_sounds/ROBLOX Oof Sound Effect.mp3"
+dest_files=["res://.godot/imported/ROBLOX Oof Sound Effect.mp3-8624320351dd8252c06c13358f68da4e.mp3str"]
+
+[params]
+
+loop=false
+loop_offset=0
+bpm=0
+beat_count=0
+bar_beats=4
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd
index 6d53964..3a7a704 100644
--- a/scenes/microgames/fishin/fishin.gd
+++ b/scenes/microgames/fishin/fishin.gd
@@ -69,6 +69,7 @@ func _on_texture_button_button_up() -> void:
in_game_timer.stop()
in_game_timer.wait_time = IN_GAME_WAIT_TIME
success_timer.start()
+ $"Yippee!".play()
func _on_start_game_timeout() -> void:
@@ -108,6 +109,7 @@ func _on_in_game_timeout() -> void:
in_game_timer.stop()
succfail_timer.start()
+ $"Fart".play()
func _on_success_fail_timeout() -> void:
diff --git a/scenes/microgames/fishin/node_2d.tscn b/scenes/microgames/fishin/node_2d.tscn
index e98b040..5dc8da7 100644
--- a/scenes/microgames/fishin/node_2d.tscn
+++ b/scenes/microgames/fishin/node_2d.tscn
@@ -1,4 +1,4 @@
-[gd_scene load_steps=15 format=3 uid="uid://c4s4pigu4pr48"]
+[gd_scene load_steps=17 format=3 uid="uid://c4s4pigu4pr48"]
[ext_resource type="Texture2D" uid="uid://voruypgyi77e" path="res://scenes/stockticker/UI-Background-Colour.png" id="1_cxqat"]
[ext_resource type="Script" path="res://scenes/microgames/fishin/fishin.gd" id="1_srw8b"]
@@ -11,6 +11,8 @@
[ext_resource type="Texture2D" uid="uid://d4kyih3ivlqqc" path="res://scenes/microgames/fishin/KibbbySad.png" id="9_blola"]
[ext_resource type="Texture2D" uid="uid://dcvie7ynwdfui" path="res://scenes/microgames/fishin/KibbbyHappy.png" id="10_1il5r"]
[ext_resource type="Texture2D" uid="uid://dpp7abs35p6i5" path="res://scenes/stockticker/fishe/gar.png" id="11_gjj1w"]
+[ext_resource type="AudioStream" uid="uid://c6021mckr08w5" path="res://funny_sounds/Yippee - Meme Sound Effect.mp3" id="12_4oxp1"]
+[ext_resource type="AudioStream" uid="uid://beunakwyi8i82" path="res://funny_sounds/ROBLOX Oof Sound Effect.mp3" id="13_kxv5l"]
[sub_resource type="Animation" id="Animation_bep6n"]
length = 0.001
@@ -140,6 +142,12 @@ wait_time = 3.0
[node name="Success" type="Timer" parent="."]
wait_time = 3.0
+[node name="Yippee!" type="AudioStreamPlayer" parent="."]
+stream = ExtResource("12_4oxp1")
+
+[node name="Fart" type="AudioStreamPlayer" parent="."]
+stream = ExtResource("13_kxv5l")
+
[connection signal="button_up" from="TextureButton" to="." method="_on_texture_button_button_up"]
[connection signal="timeout" from="StartGame" to="." method="_on_start_game_timeout"]
[connection signal="timeout" from="InGame" to="." method="_on_in_game_timeout"]