summaryrefslogtreecommitdiff
path: root/game/microgames
diff options
context:
space:
mode:
Diffstat (limited to 'game/microgames')
-rw-r--r--game/microgames/find_window/find_window.gd2
-rw-r--r--game/microgames/find_window/find_window.tscn5
-rw-r--r--game/microgames/flowers_delivery/flowers_delivery.gd3
-rw-r--r--game/microgames/flowers_delivery/flowers_delivery.tscn5
-rw-r--r--game/microgames/heart_break/heart_break.gd17
-rw-r--r--game/microgames/heart_break/heart_break.tscn12
-rw-r--r--game/microgames/heart_break/player_heart.gd1
-rw-r--r--game/microgames/tutorial/assets/Img_maos_trocadas.pngbin0 -> 21987 bytes
-rw-r--r--game/microgames/tutorial/assets/Img_maos_trocadas.png.import34
-rw-r--r--game/microgames/tutorial/assets/Img_mindinho.pngbin0 -> 18383 bytes
-rw-r--r--game/microgames/tutorial/assets/Img_mindinho.png.import34
-rw-r--r--game/microgames/tutorial/assets/Img_reverencia.pngbin0 -> 17367 bytes
-rw-r--r--game/microgames/tutorial/assets/Img_reverencia.png.import34
13 files changed, 117 insertions, 30 deletions
diff --git a/game/microgames/find_window/find_window.gd b/game/microgames/find_window/find_window.gd
index 9d2ca64..6bc6e8e 100644
--- a/game/microgames/find_window/find_window.gd
+++ b/game/microgames/find_window/find_window.gd
@@ -2,7 +2,7 @@ extends Microgame
# Called when the node enters the scene tree for the first time.
-func _ready():
+func _microgame_ready():
var windows = $AllWindows.get_children()
var max_windows = windows.size() - randi_range(0,2)
for i in max_windows:
diff --git a/game/microgames/find_window/find_window.tscn b/game/microgames/find_window/find_window.tscn
index 6fe7233..b04e6c0 100644
--- a/game/microgames/find_window/find_window.tscn
+++ b/game/microgames/find_window/find_window.tscn
@@ -1,16 +1,17 @@
-[gd_scene load_steps=7 format=3 uid="uid://b8q2l65pajb3"]
+[gd_scene load_steps=7 format=3 uid="uid://cfitfl87k1wu2"]
[ext_resource type="Script" path="res://game/microgames/find_window/find_window.gd" id="1_167ws"]
[ext_resource type="Texture2D" uid="uid://j0btxfrk2q8k" path="res://game/microgames/find_window/assets/Img_background_windows.png" id="1_w06df"]
[ext_resource type="Texture2D" uid="uid://7h0hokgsxon4" path="res://game/microgames/find_window/assets/Img_MSN_namoradinha.png" id="3_ekh6x"]
[ext_resource type="Script" path="res://game/microgames/find_window/msn_girlfriend.gd" id="4_ithnb"]
-[ext_resource type="PackedScene" uid="uid://dxo3khe6emukf" path="res://game/microgames/find_window/msn_regular.tscn" id="4_t7t3v"]
+[ext_resource type="PackedScene" path="res://game/microgames/find_window/msn_regular.tscn" id="4_t7t3v"]
[sub_resource type="LabelSettings" id="LabelSettings_csx47"]
font_color = Color(0.443137, 0.443137, 0.443137, 1)
[node name="FindWindow" type="Node"]
script = ExtResource("1_167ws")
+win_on_timeout = false
[node name="ImgBackgroundWindows" type="Sprite2D" parent="."]
position = Vector2(578, 326)
diff --git a/game/microgames/flowers_delivery/flowers_delivery.gd b/game/microgames/flowers_delivery/flowers_delivery.gd
index 79001b1..d7f8772 100644
--- a/game/microgames/flowers_delivery/flowers_delivery.gd
+++ b/game/microgames/flowers_delivery/flowers_delivery.gd
@@ -3,5 +3,4 @@ extends Microgame
# Called when the node enters the scene tree for the first time.
func _microgame_ready() -> void:
- await $Timer.timeout
- finished.emit(true if randf() < 0.5 else false)
+ pass
diff --git a/game/microgames/flowers_delivery/flowers_delivery.tscn b/game/microgames/flowers_delivery/flowers_delivery.tscn
index 69a374e..3f26d72 100644
--- a/game/microgames/flowers_delivery/flowers_delivery.tscn
+++ b/game/microgames/flowers_delivery/flowers_delivery.tscn
@@ -54,8 +54,3 @@ transform = Transform3D(10, 0, 0, 0, 0.4, 0, 0, 0, 1, 1.5768, 2.47888, 7.67072)
modulate = Color(1, 0.301961, 0.231373, 1)
pixel_size = 1.0
texture = ExtResource("6_omk1m")
-
-[node name="Timer" type="Timer" parent="."]
-wait_time = 5.0
-one_shot = true
-autostart = true
diff --git a/game/microgames/heart_break/heart_break.gd b/game/microgames/heart_break/heart_break.gd
index d25afe8..63d7e5d 100644
--- a/game/microgames/heart_break/heart_break.gd
+++ b/game/microgames/heart_break/heart_break.gd
@@ -1,22 +1,13 @@
extends Microgame
-# Called when the node enters the scene tree for the first time.
-func _ready():
- pass # Replace with function body.
-
-
-# Called every frame. 'delta' is the elapsed time since the previous frame.
-func _process(delta):
- pass
-
func _on_player_heart_body_entered(body):
if body is Spiky:
disable_player()
- ## GameOver
- pass
+ finished.emit(false)
+
func disable_player():
- $PlayerHeart.get_node("AnimatedSprite2D").play("death")
- $PlayerHeart.playerControl = false
+ $PlayerHeart.get_node("AnimatedSprite2D").play("death")
+ $PlayerHeart.playerControl = false
diff --git a/game/microgames/heart_break/heart_break.tscn b/game/microgames/heart_break/heart_break.tscn
index a36d36d..b130424 100644
--- a/game/microgames/heart_break/heart_break.tscn
+++ b/game/microgames/heart_break/heart_break.tscn
@@ -14,7 +14,7 @@ size = Vector2(20, 676)
script = ExtResource("1_ia77r")
[node name="PlayerHeart" parent="." instance=ExtResource("2_uwtaj")]
-position = Vector2(563, 338)
+position = Vector2(553, 317)
[node name="Upper Boundary" type="StaticBody2D" parent="."]
@@ -43,18 +43,18 @@ position = Vector2(574, 0)
shape = SubResource("RectangleShape2D_upktn")
[node name="Spiky" parent="." instance=ExtResource("3_dfa23")]
-position = Vector2(239, 249)
+position = Vector2(182, 188)
[node name="Spiky2" parent="." instance=ExtResource("3_dfa23")]
-position = Vector2(891, 258)
+position = Vector2(964, 218)
[node name="Spiky3" parent="." instance=ExtResource("3_dfa23")]
-position = Vector2(284, 531)
+position = Vector2(235, 481)
[node name="Spiky4" parent="." instance=ExtResource("3_dfa23")]
-position = Vector2(821, 530)
+position = Vector2(845, 496)
[node name="Spiky5" parent="." instance=ExtResource("3_dfa23")]
-position = Vector2(570, 97)
+position = Vector2(570, 104)
[connection signal="body_entered" from="PlayerHeart" to="." method="_on_player_heart_body_entered"]
diff --git a/game/microgames/heart_break/player_heart.gd b/game/microgames/heart_break/player_heart.gd
index 0a6b26a..66847bb 100644
--- a/game/microgames/heart_break/player_heart.gd
+++ b/game/microgames/heart_break/player_heart.gd
@@ -13,5 +13,4 @@ func _physics_process(delta):
if(playerControl):
var moveVector = Vector2(Input.get_axis("Left","Right")*speed, Input.get_axis("Up","Down")*speed)
apply_force(moveVector)
- #set_axis_velocity(moveVector)
pass
diff --git a/game/microgames/tutorial/assets/Img_maos_trocadas.png b/game/microgames/tutorial/assets/Img_maos_trocadas.png
new file mode 100644
index 0000000..c34d086
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_maos_trocadas.png
Binary files differ
diff --git a/game/microgames/tutorial/assets/Img_maos_trocadas.png.import b/game/microgames/tutorial/assets/Img_maos_trocadas.png.import
new file mode 100644
index 0000000..90dfc18
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_maos_trocadas.png.import
@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://dv4646lxakb8d"
+path="res://.godot/imported/Img_maos_trocadas.png-f3567bfba72bd92c0095646db01b9d96.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://game/microgames/tutorial/assets/Img_maos_trocadas.png"
+dest_files=["res://.godot/imported/Img_maos_trocadas.png-f3567bfba72bd92c0095646db01b9d96.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
diff --git a/game/microgames/tutorial/assets/Img_mindinho.png b/game/microgames/tutorial/assets/Img_mindinho.png
new file mode 100644
index 0000000..6d95852
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_mindinho.png
Binary files differ
diff --git a/game/microgames/tutorial/assets/Img_mindinho.png.import b/game/microgames/tutorial/assets/Img_mindinho.png.import
new file mode 100644
index 0000000..0f1b3fb
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_mindinho.png.import
@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://cxhuyyforfxwm"
+path="res://.godot/imported/Img_mindinho.png-1a51041fcb89306f1c3af711bfe37f0d.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://game/microgames/tutorial/assets/Img_mindinho.png"
+dest_files=["res://.godot/imported/Img_mindinho.png-1a51041fcb89306f1c3af711bfe37f0d.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1
diff --git a/game/microgames/tutorial/assets/Img_reverencia.png b/game/microgames/tutorial/assets/Img_reverencia.png
new file mode 100644
index 0000000..67b15d2
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_reverencia.png
Binary files differ
diff --git a/game/microgames/tutorial/assets/Img_reverencia.png.import b/game/microgames/tutorial/assets/Img_reverencia.png.import
new file mode 100644
index 0000000..7e530da
--- /dev/null
+++ b/game/microgames/tutorial/assets/Img_reverencia.png.import
@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="CompressedTexture2D"
+uid="uid://b81bbfen65gm3"
+path="res://.godot/imported/Img_reverencia.png-b73804dbc11dd695e25389110803caf8.ctex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://game/microgames/tutorial/assets/Img_reverencia.png"
+dest_files=["res://.godot/imported/Img_reverencia.png-b73804dbc11dd695e25389110803caf8.ctex"]
+
+[params]
+
+compress/mode=0
+compress/high_quality=false
+compress/lossy_quality=0.7
+compress/hdr_compression=1
+compress/normal_map=0
+compress/channel_pack=0
+mipmaps/generate=false
+mipmaps/limit=-1
+roughness/mode=0
+roughness/src_normal=""
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/normal_map_invert_y=false
+process/hdr_as_srgb=false
+process/hdr_clamp_exposure=false
+process/size_limit=0
+detect_3d/compress_to=1