From 35ab8ffeb3bf7ba23ef847d5caf1d48dc79fdf9e Mon Sep 17 00:00:00 2001 From: Steven Wroblewski Date: Fri, 17 Apr 2026 13:53:40 +0200 Subject: [PATCH] feat(giftshop): add Gift Shop room with shelf, counter, and interactive gift objects --- scenes/rooms/floor0/GiftShop.tscn | 65 +++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 scenes/rooms/floor0/GiftShop.tscn diff --git a/scenes/rooms/floor0/GiftShop.tscn b/scenes/rooms/floor0/GiftShop.tscn new file mode 100644 index 0000000..6c8b3f6 --- /dev/null +++ b/scenes/rooms/floor0/GiftShop.tscn @@ -0,0 +1,65 @@ +[gd_scene load_steps=2 format=3 uid="uid://cozypaw_giftshop"] + +[ext_resource type="PackedScene" path="res://scenes/objects/InteractiveObject.tscn" id="1_iobj"] + +[node name="GiftShop" type="Node2D"] + +[node name="Background" type="ColorRect" parent="."] +color = Color(1.0, 0.88, 0.92, 1) +size = Vector2(1280, 720) +position = Vector2(0, 0) + +[node name="Floor" type="ColorRect" parent="."] +color = Color(0.88, 0.80, 0.68, 1) +size = Vector2(1280, 100) +position = Vector2(0, 620) + +[node name="WallLeft" type="ColorRect" parent="."] +color = Color(0.96, 0.90, 0.90, 1) +size = Vector2(40, 620) +position = Vector2(0, 0) + +[node name="WallRight" type="ColorRect" parent="."] +color = Color(0.96, 0.90, 0.90, 1) +size = Vector2(40, 620) +position = Vector2(1240, 0) + +[node name="ShelfBoard" type="ColorRect" parent="."] +color = Color(0.75, 0.50, 0.25, 1) +size = Vector2(800, 20) +position = Vector2(240, 360) + +[node name="ShelfLegLeft" type="ColorRect" parent="."] +color = Color(0.60, 0.38, 0.18, 1) +size = Vector2(16, 240) +position = Vector2(240, 380) + +[node name="ShelfLegRight" type="ColorRect" parent="."] +color = Color(0.60, 0.38, 0.18, 1) +size = Vector2(16, 240) +position = Vector2(1024, 380) + +[node name="Counter" type="ColorRect" parent="."] +color = Color(0.60, 0.38, 0.18, 1) +size = Vector2(240, 80) +position = Vector2(520, 540) + +[node name="CounterTop" type="ColorRect" parent="."] +color = Color(0.75, 0.50, 0.25, 1) +size = Vector2(240, 12) +position = Vector2(520, 528) + +[node name="CharacterSpawn" type="Marker2D" parent="."] +position = Vector2(300, 520) + +[node name="FlowerBouquet" parent="." instance=ExtResource("1_iobj")] +position = Vector2(380, 330) + +[node name="PlushToy" parent="." instance=ExtResource("1_iobj")] +position = Vector2(640, 330) + +[node name="GiftCard" parent="." instance=ExtResource("1_iobj")] +position = Vector2(900, 330) + +[node name="GiftBox" parent="." instance=ExtResource("1_iobj")] +position = Vector2(640, 510)