feat(giftshop): add Gift Shop room with shelf, counter, and interactive gift objects
This commit is contained in:
65
scenes/rooms/floor0/GiftShop.tscn
Normal file
65
scenes/rooms/floor0/GiftShop.tscn
Normal file
@@ -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)
|
||||||
Reference in New Issue
Block a user