feat: Implement initial main scene, player scripts, and core game manager systems for input, actions, playerboard, special tiles, and UI.

This commit is contained in:
Yogi Wiguna
2026-03-12 12:06:32 +08:00
parent 686ea2587e
commit 412e7bdcdd
8 changed files with 9 additions and 8610 deletions
-51
View File
@@ -34,7 +34,6 @@ func _ready():
NakamaManager.match_joined.connect(_on_match_joined)
# Setup UI
ui_manager.setup_action_buttons(_set_action_state_callback)
ui_manager.setup_playerboard_ui()
ui_manager.setup_timer_labels(self )
ui_manager.setup_playerboard_label(self ) # NEW
@@ -602,7 +601,6 @@ func _setup_client_game():
touch_controls.set_player(player_character)
if camera_context_manager:
camera_context_manager.set_player(player_character)
ui_manager.update_button_states()
print("Client: Configured local player ", my_id)
# ALWAYS setup PowerUpUI when we have the local player, just in case
@@ -1180,7 +1178,6 @@ func add_player_character(peer_id: int, is_bot: bool = false):
touch_controls.set_player(player_character)
if camera_context_manager:
camera_context_manager.set_player(player_character)
ui_manager.update_button_states()
ui_manager.update_playerboard_ui()
func _on_peer_connected(new_peer_id: int):
@@ -1263,53 +1260,6 @@ func sync_game_start(player_list: Array, is_turn_based: bool):
# UI / Action State Management
# =============================================================================
func _set_action_state_callback(new_state):
_set_action_state(new_state)
func _set_action_state(new_state):
var local_player = GameStateManager.local_player_character
if not local_player or not local_player.is_multiplayer_authority():
return
if local_player.is_bot or local_player.is_in_group("Bots"):
ui_manager.current_action_state = new_state
return
if ui_manager.current_action_state == new_state or local_player.action_points <= 0:
return
ui_manager.current_action_state = new_state
local_player.clear_highlights()
local_player.clear_playerboard_highlights()
match new_state:
ui_manager.ActionState.MOVING:
local_player.highlight_movement_range()
ui_manager.ActionState.GRABBING:
local_player.highlight_adjacent_cells()
ui_manager.ActionState.PUTTING:
local_player.highlight_occupied_playerboard_slots()
ui_manager.ActionState.RANDOMIZING:
local_player.highlight_random_valid_cells()
ui_manager.ActionState.ARRANGING:
_show_arrangement_ui()
local_player.highlight_occupied_playerboard_slots()
func _show_arrangement_ui():
if ui_manager.playerboard_ui:
ui_manager.playerboard_ui.visible = true
ui_manager.update_playerboard_ui()
func _on_playerboard_slot_clicked(event, slot_index):
if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
var local_player = GameStateManager.local_player_character
if not local_player:
return
match ui_manager.current_action_state:
ui_manager.ActionState.ARRANGING:
local_player.arrange_playerboard_item(slot_index)
# =============================================================================
# Goal & Playerboard Sync
@@ -1527,7 +1477,6 @@ func create_specific_player(data: Dictionary):
if is_local_player and GameStateManager.local_player_character == null:
GameStateManager.local_player_character = player_character
ui_manager.set_local_player(player_character)
ui_manager.update_button_states()
# Wait for player managers to initialize (player.gd has 0.1s await in _ready)
await get_tree().create_timer(0.2).timeout
-8340
View File
@@ -9,21 +9,11 @@
[ext_resource type="Texture2D" uid="uid://2yrc6rl4dmd8" path="res://assets/textures/player_board_and_blue_print/tile_null.tres" id="6_2vy7d"]
[ext_resource type="Texture2D" uid="uid://cwxgdi7b4ps40" path="res://assets/textures/Hilight.png" id="7_2nq2l"]
[ext_resource type="Texture2D" uid="uid://c2bj21abtgda1" path="res://assets/models/pboard/HighlightRect.tres" id="7_vv0nt"]
[ext_resource type="Texture2D" uid="uid://tk5b8mcurdxc" path="res://assets/textures/player_board_and_blue_print/tile_heart_goals.tres" id="7_xwcc1"]
[ext_resource type="Texture2D" uid="uid://0wjk16jlgfq" path="res://assets/models/pboard/SelectRect.tres" id="8_8meci"]
[ext_resource type="Texture2D" uid="uid://dojnv8o6we4ey" path="res://assets/textures/Selected.png" id="8_b18m4"]
[ext_resource type="Texture2D" uid="uid://nukt8rcqu00r" path="res://assets/textures/player_board_and_blue_print/tile_diamond_goals.tres" id="8_quhbu"]
[ext_resource type="Texture2D" uid="uid://68x88jj25yxg" path="res://assets/textures/Adjacent.png" id="9_6gcb6"]
[ext_resource type="Texture2D" uid="uid://dasaeaytvhll0" path="res://assets/models/pboard/AdjacentRect.tres" id="9_aspsw"]
[ext_resource type="Texture2D" uid="uid://c74sy60aew8xv" path="res://assets/textures/player_board_and_blue_print/tile_star_goals.tres" id="9_i0gbs"]
[ext_resource type="Texture2D" uid="uid://dn26fllyitnr1" path="res://assets/textures/player_board_and_blue_print/tile_coin_goals.tres" id="10_my1qp"]
[ext_resource type="Texture2D" uid="uid://xknm2v6lgxwi" path="res://assets/textures/mission_player_2.png" id="13_ahjgs"]
[ext_resource type="FontFile" uid="uid://xnjx058n4tsw" path="res://assets/fonts/Nougat-ExtraBlack.ttf" id="13_j8jky"]
[ext_resource type="Texture2D" uid="uid://cv2v4i6ipkpv1" path="res://assets/textures/player_board_and_blue_print/tile_null_24px.tres" id="17_hh6ui"]
[ext_resource type="Texture2D" uid="uid://butrfmdp6wsck" path="res://assets/textures/player_board_and_blue_print/tiles_null_24px.png" id="18_p3nmx"]
[ext_resource type="StyleBox" uid="uid://d3ruc8gytoovx" path="res://assets/styles/ribbon_selected_gui.tres" id="18_u5x6e"]
[ext_resource type="StyleBox" uid="uid://cdhnwvcklbyl8" path="res://assets/styles/ribbon_hovered_gui.tres" id="19_w1rqq"]
[ext_resource type="StyleBox" uid="uid://3yog1weaqhxb" path="res://assets/styles/ribbon_unselected_gui.tres" id="20_q6bc1"]
[ext_resource type="Texture2D" uid="uid://ba80xnybpixw2" path="res://assets/graphics/touch_control/take_tile.png" id="25_qkpxi"]
[ext_resource type="Texture2D" uid="uid://bsgqrjx2ity4c" path="res://assets/graphics/touch_control/speed.png" id="26_2f3dj"]
[ext_resource type="Texture2D" uid="uid://pwxo4lb87yi" path="res://assets/graphics/touch_control/put_tile.png" id="26_5q0nq"]
@@ -63,11 +53,6 @@ corner_radius_bottom_left = 8
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1cewu"]
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_5oeq4"]
texture = ExtResource("13_ahjgs")
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_s1l63"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kmb1v"]
content_margin_left = 16.0
content_margin_top = 16.0
@@ -1147,93 +1132,6 @@ theme_override_font_sizes/font_size = 18
text = "00"
horizontal_alignment = 1
[node name="ActionMenu" type="Control" parent="." unique_id=1310927215]
visible = false
layout_mode = 3
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -323.0
offset_top = -384.0
grow_horizontal = 0
grow_vertical = 0
[node name="ActionButtonContainer" type="VBoxContainer" parent="ActionMenu" unique_id=1026460846]
layout_mode = 0
offset_right = 40.0
offset_bottom = 40.0
[node name="MoveButton" type="Button" parent="ActionMenu/ActionButtonContainer" unique_id=1233901451]
layout_mode = 2
text = "Move"
[node name="GrabButton" type="Button" parent="ActionMenu/ActionButtonContainer" unique_id=1584219139]
custom_minimum_size = Vector2(100, 100)
layout_mode = 2
text = "Grab"
[node name="PutButton" type="Button" parent="ActionMenu/ActionButtonContainer" unique_id=508990607]
custom_minimum_size = Vector2(100, 100)
layout_mode = 2
text = "Put"
[node name="RandomizeButton" type="Button" parent="ActionMenu/ActionButtonContainer" unique_id=900485412]
visible = false
layout_mode = 2
text = "Randomize"
[node name="ArrangeButton" type="Button" parent="ActionMenu/ActionButtonContainer" unique_id=707990056]
visible = false
layout_mode = 2
text = "Arrange"
[node name="Menu" type="VBoxContainer" parent="." unique_id=1890529349]
visible = false
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -85.0
offset_top = -33.0
offset_right = 85.0
offset_bottom = 33.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/separation = 20
[node name="Host" type="Button" parent="Menu" unique_id=339251870]
layout_mode = 2
theme_override_styles/normal = ExtResource("5_dvx6y")
theme_override_styles/normal_mirrored = ExtResource("5_dvx6y")
theme_override_styles/pressed = ExtResource("5_dvx6y")
theme_override_styles/pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover = ExtResource("5_dvx6y")
theme_override_styles/hover_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/disabled = ExtResource("5_dvx6y")
theme_override_styles/disabled_mirrored = ExtResource("5_dvx6y")
theme_override_styles/focus = ExtResource("5_dvx6y")
text = "Host"
[node name="Join" type="Button" parent="Menu" unique_id=174963990]
layout_mode = 2
theme_override_styles/normal = ExtResource("5_dvx6y")
theme_override_styles/normal_mirrored = ExtResource("5_dvx6y")
theme_override_styles/pressed = ExtResource("5_dvx6y")
theme_override_styles/pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover = ExtResource("5_dvx6y")
theme_override_styles/hover_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/disabled = ExtResource("5_dvx6y")
theme_override_styles/disabled_mirrored = ExtResource("5_dvx6y")
theme_override_styles/focus = ExtResource("5_dvx6y")
text = "Join"
[node name="MessageInput" type="LineEdit" parent="." unique_id=286018566]
visible = false
anchors_preset = 7
@@ -1255,8242 +1153,6 @@ alignment = 1
[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=12971344]
environment = ExtResource("4_ky38j")
[node name="AllPlayerGoals" type="HBoxContainer" parent="." unique_id=1868958332]
visible = false
y_sort_enabled = true
clip_contents = true
layout_direction = 2
anchors_preset = 5
anchor_left = 0.5
anchor_right = 0.5
offset_left = -241.0
offset_top = 34.0
offset_right = 253.0
offset_bottom = 114.0
grow_horizontal = 2
[node name="Panel1" type="Panel" parent="AllPlayerGoals" unique_id=1435567102]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel1" unique_id=483356482]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel1/MarginContainer" unique_id=1844478133]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=2041881380]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1" unique_id=77967801]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1" unique_id=1389236791]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1" unique_id=1319239470]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1" unique_id=1851886697]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=566375646]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2" unique_id=1598874533]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2" unique_id=1578735290]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2" unique_id=277392778]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2" unique_id=463533994]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=924183260]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3" unique_id=448135304]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3" unique_id=1808272537]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3" unique_id=634572488]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3" unique_id=363374460]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=1219571995]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4" unique_id=695887273]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4" unique_id=1474122429]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4" unique_id=725807571]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4" unique_id=996819426]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=821118710]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5" unique_id=748282422]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5" unique_id=70763863]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5" unique_id=927560436]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5" unique_id=685852998]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=534477263]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6" unique_id=583263907]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6" unique_id=745158457]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6" unique_id=1369197798]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6" unique_id=964692050]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=433193429]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7" unique_id=394556623]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7" unique_id=193878923]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7" unique_id=704069692]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7" unique_id=382648612]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=909357532]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8" unique_id=334166337]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8" unique_id=2014482274]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8" unique_id=123543493]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8" unique_id=689382390]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals" unique_id=672317297]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9" unique_id=534188018]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9" unique_id=1002172255]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9" unique_id=1837637220]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9" unique_id=1950914218]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel2" type="Panel" parent="AllPlayerGoals" unique_id=1319244066]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel2" unique_id=1664653892]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel2/MarginContainer" unique_id=1370021675]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=495924360]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1" unique_id=1917943695]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1" unique_id=1112282949]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1" unique_id=515126717]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1" unique_id=1336096458]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=306063169]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2" unique_id=191009629]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2" unique_id=1519125897]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2" unique_id=695711638]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2" unique_id=19682025]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=337008101]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3" unique_id=1758458620]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3" unique_id=517728576]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3" unique_id=1142002346]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3" unique_id=111525811]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=487019512]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4" unique_id=350616705]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4" unique_id=840627470]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4" unique_id=876207474]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4" unique_id=1098632268]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=2043600721]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5" unique_id=1133795269]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5" unique_id=340029637]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5" unique_id=1894376778]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5" unique_id=201565067]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=815885839]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6" unique_id=180137598]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6" unique_id=928929119]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6" unique_id=1526487833]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6" unique_id=809772721]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=27979150]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7" unique_id=272490061]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7" unique_id=138879348]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7" unique_id=494944833]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7" unique_id=626722821]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=331900943]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8" unique_id=2145979649]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8" unique_id=1713643814]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8" unique_id=1004311425]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8" unique_id=724863517]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals" unique_id=1278180686]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9" unique_id=990304283]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9" unique_id=1560618749]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9" unique_id=1483065847]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9" unique_id=1687011831]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel3" type="Panel" parent="AllPlayerGoals" unique_id=2062937406]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel3" unique_id=2000220656]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel3/MarginContainer" unique_id=1481629681]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=1093355881]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1" unique_id=1848512603]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1" unique_id=1445692480]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1" unique_id=1370539138]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1" unique_id=339665955]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=1206337822]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2" unique_id=1889202989]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2" unique_id=282575119]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2" unique_id=2000091270]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2" unique_id=95582864]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=1776837161]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3" unique_id=218808541]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3" unique_id=579596729]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3" unique_id=1093961646]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3" unique_id=633374841]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=119874342]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4" unique_id=1681841519]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4" unique_id=293587282]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4" unique_id=1023928601]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4" unique_id=345203617]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=1777802870]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5" unique_id=1521845468]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5" unique_id=1094222650]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5" unique_id=667804592]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5" unique_id=1949784856]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=861154959]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6" unique_id=1044394633]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6" unique_id=1961113598]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6" unique_id=940790469]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6" unique_id=582365279]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=455468434]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7" unique_id=679401029]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7" unique_id=1965790502]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7" unique_id=2039150513]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7" unique_id=1016606764]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=573279430]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8" unique_id=658807898]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8" unique_id=1333856512]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8" unique_id=1678023790]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8" unique_id=409672934]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals" unique_id=221378264]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9" unique_id=1603580515]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9" unique_id=831259146]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9" unique_id=1410534113]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9" unique_id=1459758863]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel4" type="Panel" parent="AllPlayerGoals" unique_id=1423159996]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel4" unique_id=1379649210]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel4/MarginContainer" unique_id=695329878]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=1793398481]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1" unique_id=383423869]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1" unique_id=657248692]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1" unique_id=329586365]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1" unique_id=390738443]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=695187104]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2" unique_id=1940745012]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2" unique_id=175806780]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2" unique_id=1127696315]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2" unique_id=1738533530]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=1173123913]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3" unique_id=797631987]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3" unique_id=182840177]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3" unique_id=420604154]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3" unique_id=7183565]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=2052330561]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4" unique_id=1578451193]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4" unique_id=1367776723]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4" unique_id=1265951900]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4" unique_id=1703087838]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=497097373]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5" unique_id=1194119028]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5" unique_id=1092361120]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5" unique_id=1796371363]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5" unique_id=1537337059]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=1760877726]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6" unique_id=1572560799]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6" unique_id=717255092]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6" unique_id=1727213669]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6" unique_id=542169823]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=672099709]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7" unique_id=492343350]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7" unique_id=936300932]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7" unique_id=124371671]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7" unique_id=637828021]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=678883188]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8" unique_id=1313978591]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8" unique_id=1309225322]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8" unique_id=1812924559]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8" unique_id=1488627220]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals" unique_id=898515037]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9" unique_id=1729367482]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9" unique_id=1435052990]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9" unique_id=640323930]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9" unique_id=101114468]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel5" type="Panel" parent="AllPlayerGoals" unique_id=1996050547]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel5" unique_id=706456576]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel5/MarginContainer" unique_id=1225278027]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=196237002]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1" unique_id=196721651]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1" unique_id=444229670]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1" unique_id=1098507154]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1" unique_id=762949579]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=1904573888]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2" unique_id=1975394018]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2" unique_id=1976330670]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2" unique_id=225240625]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2" unique_id=1684303384]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=128114748]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3" unique_id=1512205392]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3" unique_id=223450403]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3" unique_id=1675964502]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3" unique_id=1597329179]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=1741233425]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4" unique_id=223054362]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4" unique_id=947961064]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4" unique_id=264549738]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4" unique_id=1367436576]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=1861352661]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5" unique_id=517175251]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5" unique_id=2038606184]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5" unique_id=843032932]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5" unique_id=161659283]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=166941694]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6" unique_id=524661004]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6" unique_id=286557509]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6" unique_id=1451892311]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6" unique_id=1966427342]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=628048895]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7" unique_id=735494962]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7" unique_id=450045653]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7" unique_id=1234455705]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7" unique_id=1408926154]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=578400654]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8" unique_id=684505866]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8" unique_id=1591429967]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8" unique_id=2724628]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8" unique_id=169190578]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals" unique_id=375356611]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9" unique_id=150495285]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9" unique_id=63734944]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9" unique_id=863201757]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9" unique_id=1383241668]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel6" type="Panel" parent="AllPlayerGoals" unique_id=24945543]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel6" unique_id=1730760866]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel6/MarginContainer" unique_id=1737997641]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=1923504927]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1" unique_id=347959151]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1" unique_id=1788082065]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1" unique_id=1567558188]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1" unique_id=1885077387]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=1486667170]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2" unique_id=2132714960]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2" unique_id=1421374103]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2" unique_id=2081587112]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2" unique_id=1167101927]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=2082778556]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3" unique_id=1760516132]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3" unique_id=195864803]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3" unique_id=1297119728]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3" unique_id=397299191]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=827969889]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4" unique_id=1125322212]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4" unique_id=91225403]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4" unique_id=686774531]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4" unique_id=2105273134]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=518284387]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5" unique_id=1791839609]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5" unique_id=2125737792]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5" unique_id=367256629]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5" unique_id=1053598854]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=626452899]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6" unique_id=1486656838]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6" unique_id=453482911]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6" unique_id=508083342]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6" unique_id=1116810344]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=214045104]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7" unique_id=1886238873]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7" unique_id=1783245831]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7" unique_id=1428820548]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7" unique_id=437962945]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=418641570]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8" unique_id=1923845736]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8" unique_id=271279606]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8" unique_id=78859470]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8" unique_id=1623690604]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals" unique_id=448230626]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9" unique_id=1816741549]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9" unique_id=785254017]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9" unique_id=147798201]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9" unique_id=259621615]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel7" type="Panel" parent="AllPlayerGoals" unique_id=1262478327]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel7" unique_id=1795746717]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel7/MarginContainer" unique_id=2089405397]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=156603467]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1" unique_id=1874368251]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1" unique_id=1279254660]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1" unique_id=1196232009]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1" unique_id=733941810]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=235695608]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2" unique_id=1223362081]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2" unique_id=546301118]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2" unique_id=196780725]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2" unique_id=1257556292]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=1338923111]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3" unique_id=1288625616]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3" unique_id=410147595]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3" unique_id=1395355187]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3" unique_id=561813258]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=1306033661]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4" unique_id=935268246]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4" unique_id=128769987]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4" unique_id=958940697]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4" unique_id=1141738385]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=979390564]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5" unique_id=588829378]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5" unique_id=2060488024]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5" unique_id=1247911303]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5" unique_id=650615185]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=663092655]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6" unique_id=2089236708]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6" unique_id=360279354]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6" unique_id=1353669380]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6" unique_id=1819436291]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=694706108]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7" unique_id=162991961]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7" unique_id=903560757]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7" unique_id=2051955481]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7" unique_id=104219098]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=1693733957]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8" unique_id=1031189691]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8" unique_id=923546212]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8" unique_id=1967818767]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8" unique_id=981712497]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals" unique_id=741236895]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9" unique_id=787854499]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9" unique_id=800275545]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9" unique_id=674416524]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9" unique_id=1579187937]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel8" type="Panel" parent="AllPlayerGoals" unique_id=1144205788]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel8" unique_id=1485970331]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel8/MarginContainer" unique_id=1530595021]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=736831162]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1" unique_id=366078094]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1" unique_id=701284217]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1" unique_id=180578907]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1" unique_id=246958864]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=865188459]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2" unique_id=63293684]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2" unique_id=302421393]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2" unique_id=819659583]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2" unique_id=1280581386]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=500647282]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3" unique_id=1585920751]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3" unique_id=720799677]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3" unique_id=1737375560]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3" unique_id=557483741]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=1157253258]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4" unique_id=1544470818]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4" unique_id=2099860684]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4" unique_id=368506352]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4" unique_id=1692180203]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=50409692]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5" unique_id=1253804253]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5" unique_id=1510553271]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5" unique_id=313263718]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5" unique_id=2031265724]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=1894997659]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6" unique_id=1870572722]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6" unique_id=380944239]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6" unique_id=91772547]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6" unique_id=1239307675]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=457478607]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7" unique_id=299228982]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7" unique_id=1354895335]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7" unique_id=1223752271]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7" unique_id=1106307878]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=245077220]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8" unique_id=2029104421]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8" unique_id=2139158550]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8" unique_id=1703864783]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8" unique_id=1118147644]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals" unique_id=698162092]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9" unique_id=1994361903]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9" unique_id=1938002677]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9" unique_id=494180583]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9" unique_id=313616380]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel9" type="Panel" parent="AllPlayerGoals" unique_id=279030100]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel9" unique_id=1035017398]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel9/MarginContainer" unique_id=1145597210]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=742741382]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1" unique_id=949550689]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1" unique_id=377842316]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1" unique_id=1421663707]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1" unique_id=882016755]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=2043951660]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2" unique_id=404365278]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2" unique_id=321026797]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2" unique_id=417392522]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2" unique_id=681936614]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=1698439609]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3" unique_id=686441723]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3" unique_id=1466274191]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3" unique_id=422195352]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3" unique_id=1798691252]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=1328216712]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4" unique_id=19490639]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4" unique_id=1259249365]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4" unique_id=143193015]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4" unique_id=2079886117]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=320176598]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5" unique_id=1335270208]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5" unique_id=2031467701]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5" unique_id=1794091712]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5" unique_id=995882880]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=501099559]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6" unique_id=491426045]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6" unique_id=1647466563]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6" unique_id=1457627803]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6" unique_id=1885885854]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=1096202747]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7" unique_id=1485145327]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7" unique_id=1334342132]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7" unique_id=515405253]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7" unique_id=1057176029]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=1441949427]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8" unique_id=2085627071]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8" unique_id=460326949]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8" unique_id=717362270]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8" unique_id=51516090]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals" unique_id=1973218988]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9" unique_id=955010955]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9" unique_id=1176624536]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9" unique_id=550443552]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9" unique_id=1283610400]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel10" type="Panel" parent="AllPlayerGoals" unique_id=1692833583]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel10" unique_id=1807924300]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel10/MarginContainer" unique_id=1568461943]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=2091915014]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1" unique_id=419949003]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1" unique_id=1048922803]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1" unique_id=255847096]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1" unique_id=1565259668]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=1732034408]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2" unique_id=654800096]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2" unique_id=2039620331]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2" unique_id=469534954]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2" unique_id=1692461696]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=867338264]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3" unique_id=1640092114]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3" unique_id=1748773593]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3" unique_id=1727292287]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3" unique_id=1688344846]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=579252586]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4" unique_id=1706895748]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4" unique_id=497748487]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4" unique_id=1196348414]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4" unique_id=1573970988]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=968101529]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5" unique_id=376297649]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5" unique_id=1344239478]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5" unique_id=1413584520]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5" unique_id=546784444]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=528227653]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6" unique_id=1699517845]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6" unique_id=138725397]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6" unique_id=1937249269]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6" unique_id=400048014]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=712104806]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7" unique_id=1110737278]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7" unique_id=1445682490]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7" unique_id=1515287581]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7" unique_id=164868450]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=359277438]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8" unique_id=1421632070]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8" unique_id=1070509992]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8" unique_id=1567079708]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8" unique_id=317597682]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals" unique_id=1886843898]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9" unique_id=1115300553]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9" unique_id=6484982]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9" unique_id=1019873158]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9" unique_id=72421189]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel11" type="Panel" parent="AllPlayerGoals" unique_id=93298412]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel11" unique_id=2032423506]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel11/MarginContainer" unique_id=1384954290]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1102159288]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1" unique_id=1690920672]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1" unique_id=1409806038]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1" unique_id=1415805477]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1" unique_id=1086521923]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1838426062]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2" unique_id=343680654]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2" unique_id=1147927034]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2" unique_id=574336685]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2" unique_id=1415923424]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=123833390]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3" unique_id=854711159]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3" unique_id=1742857841]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3" unique_id=872663290]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3" unique_id=771138546]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=504799863]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4" unique_id=1518382014]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4" unique_id=1002670113]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4" unique_id=1667450711]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4" unique_id=1428434245]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1652419793]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5" unique_id=1446921336]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5" unique_id=297834693]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5" unique_id=1998269556]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5" unique_id=992049322]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1502661769]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6" unique_id=2147160871]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6" unique_id=1585716963]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6" unique_id=39449588]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6" unique_id=545408506]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=980603900]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7" unique_id=1987910025]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7" unique_id=516648494]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7" unique_id=1355480642]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7" unique_id=34707648]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1490001147]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8" unique_id=1999911792]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8" unique_id=1882127708]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8" unique_id=1221193079]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8" unique_id=1108619103]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals" unique_id=1125923967]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9" unique_id=240559245]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9" unique_id=1580831099]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9" unique_id=1466771542]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9" unique_id=2118880433]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Panel12" type="Panel" parent="AllPlayerGoals" unique_id=1049548697]
visible = false
custom_minimum_size = Vector2(105, 105)
layout_mode = 2
theme_override_styles/panel = SubResource("StyleBoxTexture_5oeq4")
[node name="MarginContainer" type="MarginContainer" parent="AllPlayerGoals/Panel12" unique_id=63706712]
layout_mode = 1
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -44.0
offset_top = -43.5
offset_right = 36.0
offset_bottom = 36.5
grow_horizontal = 2
grow_vertical = 2
[node name="Playergoals" type="GridContainer" parent="AllPlayerGoals/Panel12/MarginContainer" unique_id=1693441050]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=1883860175]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1" unique_id=1641289068]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1" unique_id=551633925]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1" unique_id=1150560222]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1" unique_id=25974436]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=440177881]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2" unique_id=1817851517]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2" unique_id=1477502161]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2" unique_id=1439414198]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2" unique_id=2005710538]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=127426487]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3" unique_id=1495399248]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3" unique_id=877286318]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3" unique_id=736628686]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3" unique_id=920325725]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=1989164336]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4" unique_id=1233816399]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4" unique_id=373624826]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4" unique_id=1265980847]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4" unique_id=1998509726]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=531513532]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5" unique_id=76606340]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5" unique_id=844518552]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5" unique_id=1546095378]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5" unique_id=131232436]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=928211203]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6" unique_id=1993076668]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6" unique_id=289493961]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6" unique_id=1254073674]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6" unique_id=166532148]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=573773873]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7" unique_id=910471223]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7" unique_id=631345799]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7" unique_id=1042459147]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7" unique_id=74248095]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=1362827450]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8" unique_id=940301302]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8" unique_id=1406270297]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8" unique_id=557472548]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8" unique_id=266903657]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals" unique_id=1912818520]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9" unique_id=1194402151]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9" unique_id=1682174985]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9" unique_id=149898633]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9" unique_id=2129121101]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("10_my1qp")
[node name="AllPlayerBoards" type="TabContainer" parent="." unique_id=1453336051]
visible = false
clip_contents = true
anchors_preset = 4
anchor_top = 0.5
anchor_bottom = 0.5
offset_left = 40.0
offset_top = -72.0
offset_right = 196.0
offset_bottom = 115.0
grow_vertical = 2
theme_override_styles/tab_unselected = ExtResource("20_q6bc1")
theme_override_styles/tab_hovered = ExtResource("19_w1rqq")
theme_override_styles/tab_selected = ExtResource("18_u5x6e")
theme_override_styles/tab_focus = SubResource("StyleBoxEmpty_s1l63")
current_tab = 0
tabs_position = 1
clip_tabs = false
[node name="1" type="MarginContainer" parent="AllPlayerBoards" unique_id=2089357942]
layout_mode = 2
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
theme_override_constants/margin_right = 10
theme_override_constants/margin_bottom = 10
metadata/_tab_index = 0
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/1" unique_id=229431117]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1249184317]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1" unique_id=1359656186]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1" unique_id=1363477995]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1" unique_id=311486382]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1" unique_id=589309570]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=156620392]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2" unique_id=888763477]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2" unique_id=283480395]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2" unique_id=1404811108]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2" unique_id=1249568417]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1318031416]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3" unique_id=238612893]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3" unique_id=721847196]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3" unique_id=800481663]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3" unique_id=871403647]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=952381589]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4" unique_id=499888429]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4" unique_id=183934320]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4" unique_id=1696758470]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4" unique_id=1480841130]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=441131527]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5" unique_id=1557567852]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5" unique_id=1491383518]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5" unique_id=1895286641]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5" unique_id=773617686]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1894698592]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6" unique_id=588509310]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6" unique_id=1674853660]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6" unique_id=1128017284]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6" unique_id=1650322344]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1225405823]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7" unique_id=100882753]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7" unique_id=818156892]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7" unique_id=56832475]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7" unique_id=391954948]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=2129053272]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8" unique_id=1192394871]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8" unique_id=1310153477]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8" unique_id=367440876]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8" unique_id=630527103]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1317668951]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9" unique_id=808786515]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9" unique_id=134683961]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9" unique_id=2057673008]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9" unique_id=1051976179]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1256953834]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10" unique_id=377969467]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10" unique_id=1620313967]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10" unique_id=146478454]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10" unique_id=269370735]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1986502517]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11" unique_id=1590715946]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11" unique_id=578977784]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11" unique_id=2126458812]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11" unique_id=500491411]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1104582987]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12" unique_id=2061467475]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12" unique_id=457715904]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12" unique_id=649093206]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12" unique_id=555227759]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=977221841]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13" unique_id=1333129061]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13" unique_id=1477560265]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13" unique_id=1806963458]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13" unique_id=597310396]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=945809750]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14" unique_id=1456612648]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14" unique_id=495731012]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14" unique_id=1037037376]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14" unique_id=1015705801]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1318998034]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15" unique_id=207794132]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15" unique_id=1286781316]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15" unique_id=957906478]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15" unique_id=1401814878]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1761173842]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16" unique_id=1796944995]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16" unique_id=1185398019]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16" unique_id=988160923]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16" unique_id=1253156394]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1906933725]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17" unique_id=793286863]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17" unique_id=1742309751]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17" unique_id=642732424]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17" unique_id=108087114]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=464630453]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18" unique_id=144617483]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18" unique_id=1626025643]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18" unique_id=40731444]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18" unique_id=1703671260]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=712392351]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19" unique_id=1912997392]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19" unique_id=403822538]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19" unique_id=1776563682]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19" unique_id=1241125255]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1951721940]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20" unique_id=1250800985]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20" unique_id=1884523862]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20" unique_id=228171509]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20" unique_id=1040070497]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=957951058]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21" unique_id=1786488205]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21" unique_id=431228066]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21" unique_id=2006165387]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21" unique_id=1618713123]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=2094164140]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22" unique_id=1173587893]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22" unique_id=628535538]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22" unique_id=235712196]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22" unique_id=1156184195]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=378410219]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23" unique_id=1690721708]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23" unique_id=306794927]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23" unique_id=2106987225]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23" unique_id=1900925750]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=1513792712]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24" unique_id=452535454]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24" unique_id=470419990]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24" unique_id=1988423226]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24" unique_id=1395030408]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI" unique_id=82784325]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25" unique_id=172574326]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25" unique_id=143783295]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25" unique_id=714083437]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25" unique_id=1142059904]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="2" type="MarginContainer" parent="AllPlayerBoards" unique_id=596710065]
visible = false
layout_mode = 2
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
theme_override_constants/margin_right = 10
theme_override_constants/margin_bottom = 10
metadata/_tab_index = 1
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/2" unique_id=520901619]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1072653140]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1" unique_id=222709696]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1" unique_id=798986101]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1" unique_id=797792073]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1" unique_id=784197555]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=524922040]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2" unique_id=262477410]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2" unique_id=922755966]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2" unique_id=1790844994]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2" unique_id=350931768]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1036221123]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3" unique_id=566361706]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3" unique_id=47292926]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3" unique_id=162455766]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3" unique_id=1422240044]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=2130686722]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4" unique_id=1572299467]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4" unique_id=375044002]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4" unique_id=10863682]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4" unique_id=1919052056]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=398468861]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5" unique_id=625810944]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5" unique_id=626241806]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5" unique_id=1470001875]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5" unique_id=618647628]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1383651161]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6" unique_id=481451135]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6" unique_id=1252987820]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6" unique_id=1136669268]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6" unique_id=1868774761]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=2032218712]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7" unique_id=1208520302]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7" unique_id=1544587136]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7" unique_id=271802141]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7" unique_id=1267162625]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=886842043]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8" unique_id=1386358601]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8" unique_id=1876272142]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8" unique_id=598180772]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8" unique_id=1447329642]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=755138048]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9" unique_id=1504677267]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9" unique_id=87928586]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9" unique_id=974549243]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9" unique_id=460344184]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=131636067]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10" unique_id=356144440]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10" unique_id=1049483460]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10" unique_id=1593043309]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10" unique_id=1721708093]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=504916494]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11" unique_id=1648826860]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11" unique_id=394863322]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11" unique_id=279640918]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11" unique_id=1188241222]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=80020500]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12" unique_id=377326857]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12" unique_id=400976032]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12" unique_id=1036190108]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12" unique_id=651357468]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=457620985]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13" unique_id=1335243974]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13" unique_id=550290583]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13" unique_id=1967766009]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13" unique_id=1516854531]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=271544066]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14" unique_id=380020651]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14" unique_id=1989580178]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14" unique_id=1001432688]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14" unique_id=1971089825]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1631125699]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15" unique_id=1148662744]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15" unique_id=924148534]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15" unique_id=860070645]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15" unique_id=1660382072]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=854234251]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16" unique_id=80363174]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16" unique_id=404712990]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16" unique_id=431499267]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16" unique_id=514860215]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1102336303]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17" unique_id=1130313338]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17" unique_id=715007874]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17" unique_id=375942584]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17" unique_id=1167563079]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=992603289]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18" unique_id=1234518145]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18" unique_id=1527480263]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18" unique_id=1933477490]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18" unique_id=809497063]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=946412990]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19" unique_id=744686668]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19" unique_id=683812908]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19" unique_id=853684181]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19" unique_id=1912468336]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1570991196]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20" unique_id=1029645443]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20" unique_id=1173379456]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20" unique_id=963603304]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20" unique_id=583116005]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=458919616]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21" unique_id=1420108185]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21" unique_id=213925178]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21" unique_id=1271520916]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21" unique_id=982150045]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1583788468]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22" unique_id=2094725059]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22" unique_id=610849086]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22" unique_id=1645218752]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22" unique_id=890596469]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1765780134]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23" unique_id=2136018813]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23" unique_id=521693667]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23" unique_id=1203626046]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23" unique_id=1462324233]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=1309953316]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24" unique_id=1153911850]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24" unique_id=1348641237]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24" unique_id=1530506939]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24" unique_id=55430128]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI" unique_id=51769499]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25" unique_id=1145565863]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25" unique_id=2011135341]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25" unique_id=1812277764]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25" unique_id=2032892193]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="3" type="MarginContainer" parent="AllPlayerBoards" unique_id=226897953]
visible = false
layout_mode = 2
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
theme_override_constants/margin_right = 10
theme_override_constants/margin_bottom = 10
metadata/_tab_index = 2
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/3" unique_id=224917204]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=64715766]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1" unique_id=1556598349]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1" unique_id=838297361]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1" unique_id=1873617326]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1" unique_id=867253656]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1799148763]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2" unique_id=669069807]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2" unique_id=1178922578]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2" unique_id=400547855]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2" unique_id=1972223203]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=2015202344]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3" unique_id=409223618]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3" unique_id=1114499460]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3" unique_id=1352035023]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3" unique_id=1560624220]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1977264228]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4" unique_id=942436456]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4" unique_id=1478246810]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4" unique_id=1136658633]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4" unique_id=93612168]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1007197813]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5" unique_id=644574065]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5" unique_id=704116116]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5" unique_id=930232747]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5" unique_id=914528055]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=2082785165]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6" unique_id=522758959]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6" unique_id=1476999995]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6" unique_id=856010912]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6" unique_id=1258547697]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=90535649]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7" unique_id=401060291]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7" unique_id=1933733864]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7" unique_id=23203688]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7" unique_id=167404508]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1228101024]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8" unique_id=886163257]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8" unique_id=470676688]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8" unique_id=1963730857]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8" unique_id=797994779]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1554680306]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9" unique_id=798157885]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9" unique_id=309507420]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9" unique_id=488428986]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9" unique_id=1108143118]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=109455546]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10" unique_id=403530955]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10" unique_id=71823724]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10" unique_id=345962592]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10" unique_id=1491412843]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=472686619]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11" unique_id=641419720]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11" unique_id=1841778669]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11" unique_id=1914519000]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11" unique_id=332767993]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=323640710]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12" unique_id=867375835]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12" unique_id=1327232562]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12" unique_id=199877061]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12" unique_id=33444673]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1131974848]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13" unique_id=813929989]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13" unique_id=475438713]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13" unique_id=452597343]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13" unique_id=1010835389]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1487233111]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14" unique_id=1483967869]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14" unique_id=1406227340]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14" unique_id=2052859517]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14" unique_id=994019310]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1609309811]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15" unique_id=478841069]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15" unique_id=1009484273]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15" unique_id=1973614671]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15" unique_id=541576193]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1809732016]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16" unique_id=432250205]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16" unique_id=730787704]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16" unique_id=265168636]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16" unique_id=1644771026]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=2129093905]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17" unique_id=745577589]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17" unique_id=1110187639]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17" unique_id=1277956608]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17" unique_id=1207847810]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1712011026]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18" unique_id=472351141]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18" unique_id=1439010944]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18" unique_id=1494993453]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18" unique_id=289234847]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=2039202418]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19" unique_id=1952348688]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19" unique_id=2021668906]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19" unique_id=564858963]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19" unique_id=377450375]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1302464978]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20" unique_id=1207779496]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20" unique_id=256688652]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20" unique_id=1228627463]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20" unique_id=242782803]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=1884595477]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21" unique_id=689405268]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21" unique_id=967644943]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21" unique_id=1276576935]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21" unique_id=2035242793]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=90981078]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22" unique_id=381943357]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22" unique_id=639981464]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22" unique_id=1299211491]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22" unique_id=100158693]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=531694420]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23" unique_id=396639154]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23" unique_id=1695407769]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23" unique_id=1367071186]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23" unique_id=481364943]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=60450933]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24" unique_id=1121395258]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24" unique_id=2083963446]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24" unique_id=1964565410]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24" unique_id=1846306360]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI" unique_id=393305078]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25" unique_id=2015728457]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25" unique_id=269484988]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25" unique_id=1314403270]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25" unique_id=1950549638]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="4" type="MarginContainer" parent="AllPlayerBoards" unique_id=391278941]
visible = false
layout_mode = 2
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
theme_override_constants/margin_right = 10
theme_override_constants/margin_bottom = 10
metadata/_tab_index = 3
[node name="PlayerboardUI" type="GridContainer" parent="AllPlayerBoards/4" unique_id=589383981]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=918313188]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1" unique_id=983830083]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1" unique_id=1263686499]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1" unique_id=615641377]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1" unique_id=448396993]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=910814368]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2" unique_id=127983925]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2" unique_id=1990487076]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2" unique_id=1245735695]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2" unique_id=860859335]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=509702348]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3" unique_id=84576343]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3" unique_id=699183494]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3" unique_id=1085446474]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3" unique_id=1158622670]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=337222908]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4" unique_id=1350615779]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4" unique_id=1670105621]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4" unique_id=2123048141]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4" unique_id=1910372551]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1260703805]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5" unique_id=625477225]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5" unique_id=830824782]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5" unique_id=579494872]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5" unique_id=327303339]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=2027131352]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6" unique_id=2140235979]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6" unique_id=839368463]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6" unique_id=482373921]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6" unique_id=949149504]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1570102522]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7" unique_id=796516266]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7" unique_id=643868602]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7" unique_id=1084947415]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7" unique_id=1922176948]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1902283278]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8" unique_id=1935266990]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8" unique_id=1873489997]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8" unique_id=116852142]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8" unique_id=1160585193]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=2131422706]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9" unique_id=1745766512]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9" unique_id=184008262]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9" unique_id=2118704900]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9" unique_id=1163434490]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=736387888]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10" unique_id=575581679]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10" unique_id=1429279196]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10" unique_id=1189136294]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10" unique_id=193222146]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1580085811]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11" unique_id=1562729548]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11" unique_id=1349951570]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11" unique_id=242430865]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11" unique_id=1696906705]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=157243665]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12" unique_id=1257588871]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12" unique_id=1476440136]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12" unique_id=913025059]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12" unique_id=714700467]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=761363148]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13" unique_id=252506745]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13" unique_id=1762918221]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13" unique_id=1275467104]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13" unique_id=1481616223]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1547886369]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14" unique_id=1807297035]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14" unique_id=318084727]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14" unique_id=923164869]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14" unique_id=95745886]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1718917632]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15" unique_id=17322747]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15" unique_id=2077015940]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15" unique_id=1610108457]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15" unique_id=286900965]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1343561703]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16" unique_id=226912822]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16" unique_id=705746654]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16" unique_id=636105208]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16" unique_id=714420494]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1794748747]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17" unique_id=872500789]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17" unique_id=696714625]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17" unique_id=871976918]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17" unique_id=1858584023]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1565669509]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18" unique_id=870381478]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18" unique_id=2023182169]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18" unique_id=1267438706]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18" unique_id=922066731]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1290489616]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19" unique_id=2626221]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19" unique_id=1892693049]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19" unique_id=1795643825]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19" unique_id=1659801525]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1324006645]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20" unique_id=1784641429]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20" unique_id=1737039933]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20" unique_id=276551065]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20" unique_id=683066441]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=395125933]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21" unique_id=286004714]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21" unique_id=1202335030]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21" unique_id=1286193996]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21" unique_id=1249304509]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=37896457]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22" unique_id=247616799]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22" unique_id=399757496]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22" unique_id=1492930236]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22" unique_id=1135885968]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1068684359]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23" unique_id=556621224]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23" unique_id=202582340]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23" unique_id=390428671]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23" unique_id=1321275925]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=1501714111]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24" unique_id=1769515011]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24" unique_id=196365707]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24" unique_id=1266095701]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24" unique_id=1236400800]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI" unique_id=75134593]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25" unique_id=287450230]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25" unique_id=510128880]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25" unique_id=1886346210]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25" unique_id=698211500]
visible = false
layout_mode = 0
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="MessageBar" type="PanelContainer" parent="." unique_id=142729129]
visible = false
anchors_preset = 2
@@ -10214,8 +1876,6 @@ transform = Transform3D(4, 0, 0, 0, 1.8291987, 3.557251, 0, -3.557251, 1.8291987
texture = ExtResource("37_fuf3a")
region_rect = Rect2(0, 0, 1080, 0)
[connection signal="pressed" from="Menu/Host" to="." method="_on_host_pressed"]
[connection signal="pressed" from="Menu/Join" to="." method="_on_join_pressed"]
[connection signal="text_submitted" from="MessageInput" to="." method="_on_message_input_text_submitted"]
[connection signal="pressed" from="PauseMenu/Panel/VBox/ResumeBtn" to="." method="_on_resume_pressed"]
[connection signal="pressed" from="PauseMenu/Panel/VBox/HowToPlayBtn" to="." method="_on_how_to_play_pressed"]
+2 -22
View File
@@ -1445,24 +1445,8 @@ func start_movement_along_path(path: Array, clear_visual: bool = true, force: bo
snapshot_buffer.clear()
target_visual_position = grid_to_world(current_position)
# Check for buffered input
if movement_manager and movement_manager.has_method("_on_movement_finished"):
movement_manager._on_movement_finished()
# Only restore UI state if this is a human player
if not (is_bot or is_in_group("Bots")):
# Restore movement range highlights if it was the player's turn
if main and main.ui_manager.current_action_state == main.ui_manager.ActionState.MOVING and is_my_turn:
highlight_movement_range()
has_moved_this_turn = path.size() <= movement_range
if not (is_bot or is_in_group("Bots")):
# Only reset to NONE if we were in MOVING state (voluntary movement).
# If we were TARGETING/GRABBING and got pushed, preserve that state.
if main.ui_manager.current_action_state == main.ui_manager.ActionState.MOVING:
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
if TurnManager.turn_based_mode:
end_turn()
_after_action_completed()
@@ -1760,12 +1744,8 @@ func force_action_state_none():
if is_bot or is_in_group("Bots"):
return
var main = get_tree().get_root().get_node_or_null("Main")
if main and main.ui_manager:
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
if action_manager:
action_manager.clear_highlights()
action_manager.clear_playerboard_highlights()
clear_highlights()
clear_playerboard_highlights()
# -----------------------------------------------------------------
+1 -6
View File
@@ -53,7 +53,6 @@ func after_action_completed():
if not player.is_bot and not player.is_in_group("Bots"):
var main = player.get_tree().get_root().get_node_or_null("Main")
if main:
main.ui_manager.update_button_states()
main.ui_manager.update_playerboard_ui()
# Add this line to sync all boards
@@ -180,9 +179,8 @@ func clear_highlights():
if not enhanced_gridmap or not player.is_multiplayer_authority():
return
# Store the current action state before clearing
# Clear highlights normally
var main = player.get_tree().get_root().get_node_or_null("Main")
var current_state = main.ui_manager.current_action_state if main else null
var hover_id = enhanced_gridmap.hover_item
@@ -205,9 +203,6 @@ func clear_highlights():
for child in slot.get_children():
child.hide()
# Restore highlights based on current action state
if main and current_state == main.ui_manager.ActionState.MOVING and player.is_my_turn:
player.highlight_movement_range()
func clear_playerboard_highlights():
# Never allow bots to clear highlights for human players
+4 -65
View File
@@ -56,30 +56,6 @@ func _process(delta):
movement_manager.simple_move_to(target_position)
# Targeting Mode Preview
var main = player.get_node_or_null("/root/Main")
if main and main.ui_manager and main.ui_manager.current_action_state == main.ui_manager.ActionState.TARGETING:
# Use mouse position raycast to determine hover
var viewport = player.get_viewport()
var mouse_pos = viewport.get_mouse_position()
var camera = viewport.get_camera_3d()
var from = camera.project_ray_origin(mouse_pos)
var to = from + camera.project_ray_normal(mouse_pos) * 1000
var hover_grid = player.raycast_to_grid(from, to)
# print("Targeting Hover: %s, Skill: %d" % [hover_grid, main.ui_manager.pending_skill_id]) # Debug
# Only update if valid position
if hover_grid != Vector2i(-1, -1):
var st_manager = player.get_node_or_null("SpecialTilesManager")
if st_manager:
var area = st_manager.get_skill_affected_area(main.ui_manager.pending_skill_id, hover_grid)
# Choose highlight color/mesh based on skill
# User Request: Use default hover item (1)
var highlight_id = 1
player.highlight_cells_if_authorized(area, highlight_id)
func handle_unhandled_input(event):
# Early return if not authorized human player
@@ -163,48 +139,11 @@ func handle_grid_click(grid_position: Vector2i):
var main = player.get_node("/root/Main")
if not main:
return
match main.ui_manager.current_action_state:
main.ui_manager.ActionState.MOVING:
if grid_position in player.highlighted_cells:
movement_manager.move_to_clicked_position(grid_position)
main.ui_manager.ActionState.GRABBING:
if grid_position in player.highlighted_cells or grid_position == player.current_position:
player.grab_item(grid_position)
main.ui_manager.ActionState.RANDOMIZING:
if grid_position in player.highlighted_cells:
main.randomize_item_at_position(grid_position)
# Add TARGETING State
main.ui_manager.ActionState.TARGETING:
var skill_id = main.ui_manager.pending_skill_id
if skill_id != -1:
var st_manager = player.get_node_or_null("SpecialTilesManager")
if st_manager:
# Clear Highlights FIRST to avoid overwriting the newly placed tiles
player.clear_highlights()
st_manager.execute_targeted_effect(skill_id, grid_position)
# Reset state
main.ui_manager.pending_skill_id = -1
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
# Action logic previously here has been removed along with ActionMenu.
# Standard movement/interaction is now handled via keyboard/joystick.
func handle_slot_gui_input(event, slot_index, slot_ui) -> int:
if event is InputEventMouseButton and event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
var main = player.get_tree().get_root().get_node_or_null("Main")
if main.ui_manager.current_action_state == main.ui_manager.ActionState.ARRANGING:
if player.selected_playerboard_slot == -1:
player.select_playerboard_slot(slot_index)
return slot_index
else:
if player.selected_playerboard_slot == slot_index:
player.deselect_playerboard_slot()
return slot_index
elif player.can_move_to_target_playerboard_slot():
player.target_playerboard_slot(slot_index)
main.emit_signal("can_move_item", true)
return slot_index
else:
return -1
# Arrangement mode has been removed along with ActionMenu.
return -1
+2 -66
View File
@@ -474,7 +474,6 @@ func auto_put_item() -> bool:
var main = player.get_tree().get_root().get_node_or_null("Main")
if main and main.ui_manager and not (player.is_bot or player.is_in_group("Bots")):
main.ui_manager.update_playerboard_ui()
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
# === Server Sync ===
player.rpc("sync_grid_item", cell.x, cell.y, cell.z, item)
@@ -488,71 +487,8 @@ func auto_put_item() -> bool:
# ARRANGE Operations
# =============================================================================
func arrange_playerboard_item(slot_index: int):
if player.action_points < 2 or player.playerboard[slot_index] == -1:
return
#var selected_item = player.playerboard[slot_index]
var adjacent_slots = get_adjacent_playerboard_slots(slot_index)
var main = player.get_tree().get_root().get_node_or_null("Main")
if not main or not main.ui_manager.playerboard_ui:
return
# Store the selected slot
selected_playerboard_slot = slot_index
# Highlight selected slot
var selected_slot_ui = main.ui_manager.playerboard_ui.get_child(slot_index)
if selected_slot_ui.get_child_count() > 1:
selected_slot_ui.get_child(1).show()
# Highlight valid adjacent slots
for adj_slot in adjacent_slots:
if player.playerboard[adj_slot] == -1: # Only highlight empty adjacent slots
if not (player.is_bot or player.is_in_group("Bots")):
var adj_slot_ui = main.ui_manager.playerboard_ui.get_child(adj_slot)
if adj_slot_ui.get_child_count() > 2:
adj_slot_ui.get_child(2).show()
player.action_manager.highlighted_cells.append(adj_slot)
# Connect to slot click signals
for i in range(player.playerboard.size()):
var slot = main.ui_manager.playerboard_ui.get_child(i)
if not slot.gui_input.is_connected(player._on_slot_clicked):
slot.gui_input.connect(player._on_slot_clicked.bind(i))
func handle_slot_clicked(slot_index: int):
var main = player.get_tree().get_root().get_node_or_null("Main")
if not main or main.ui_manager.current_action_state != main.ui_manager.ActionState.ARRANGING:
return
if selected_playerboard_slot == -1 or slot_index == selected_playerboard_slot:
return
var adjacent_slots = get_adjacent_playerboard_slots(selected_playerboard_slot)
if slot_index in adjacent_slots and player.playerboard[slot_index] == -1 and not (slot_index in HIDDEN_SLOTS):
# Move item to empty target slot
var selected_item = player.playerboard[selected_playerboard_slot]
player.playerboard[slot_index] = selected_item
player.playerboard[selected_playerboard_slot] = -1
if player.is_multiplayer_authority():
player.rpc("sync_playerboard", player.playerboard)
player.consume_action_points(2)
player.has_performed_action = true
# Clear highlights
player.clear_highlights()
player.clear_playerboard_highlights()
# Reset selection
selected_playerboard_slot = -1
# Update the visual representation
if not (player.is_bot or player.is_in_group("Bots")):
main.ui_manager.update_playerboard_ui()
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
# Arrangement mode has been removed along with ActionMenu.
pass
# =============================================================================
# Helper Functions
@@ -64,10 +64,6 @@ func execute_targeted_effect(effect: int, target_pos: Vector2i):
if player.is_multiplayer_authority():
player.rpc("trigger_screen_shake", "light")
# Also reset action loop? (ONLY for human players)
if not (player.is_bot or player.is_in_group("Bots")):
var main = player.get_tree().get_root().get_node_or_null("Main")
if main and main.ui_manager:
main.ui_manager.current_action_state = main.ui_manager.ActionState.NONE
# Random shape patterns for 3x3 area (relative offsets from center)
-56
View File
@@ -11,12 +11,6 @@ const item_tex = [
]
# Node references - will be set by Main
var action_menu
var move_button
var grab_button
var put_button
var randomize_button
var arrange_button
# var victory_ui_scene = preload("res://scenes/ui/victory_ui.tscn")
var victory_ui_scene = null
var powerup_inventory_ui_script = preload("res://scripts/ui/powerup_inventory_ui.gd")
@@ -33,31 +27,12 @@ var player_name_label: Label # Shows player name on main UI
var local_player_character
var _previous_playerboard_state: Array = []
enum ActionState {
NONE,
MOVING,
GRABBING,
ARRANGING,
RANDOMIZING,
TARGETING
}
var current_action_state = ActionState.NONE
var pending_skill_id: int = -1
func initialize(player_node):
# Get PowerUp Inventory UI from scene
powerup_inventory_ui = player_node.get_node_or_null("PowerUpInventoryUI")
# Get node references from main scene
action_menu = player_node.get_node("ActionMenu")
var button_container = player_node.get_node("ActionMenu/ActionButtonContainer")
move_button = button_container.get_node("MoveButton")
grab_button = button_container.get_node("GrabButton")
put_button = button_container.get_node("PutButton")
randomize_button = button_container.get_node("RandomizeButton") # renamed main_node to player_node which is Main
arrange_button = player_node.get_node("ActionMenu/ActionButtonContainer/ArrangeButton")
playerboard_ui = player_node.get_node("PlayerboardUI")
# Connect PlayerName label (Level/XP/Name UI)
@@ -78,18 +53,6 @@ func set_local_player(player):
player_name_label.text = player.display_name
print("[UIManager] Updated PlayerName label to: ", player.display_name)
func setup_action_buttons(action_state_callback):
move_button.pressed.connect(func(): action_state_callback.call(ActionState.MOVING))
grab_button.pressed.connect(func(): action_state_callback.call(ActionState.GRABBING))
put_button.pressed.connect(func():
if local_player_character:
local_player_character.auto_put_item()
)
randomize_button.pressed.connect(func(): action_state_callback.call(ActionState.RANDOMIZING))
arrange_button.pressed.connect(func():
if local_player_character and local_player_character.action_points >= 2:
action_state_callback.call(ActionState.ARRANGING)
)
func setup_playerboard_ui():
for child in playerboard_ui.get_children():
@@ -238,25 +201,6 @@ func _pulse_slot_effect(slot: Control):
slot.modulate = Color(1.5, 1.5, 1.5) # Overbright
tween.parallel().tween_property(slot, "modulate", original_modulate, 0.3)
func update_button_states():
if not local_player_character or local_player_character.is_in_group("Bots"):
move_button.visible = false
grab_button.visible = false
put_button.visible = false
randomize_button.visible = false
arrange_button.visible = false
return
move_button.visible = true
grab_button.visible = true
put_button.visible = true
randomize_button.visible = true
arrange_button.visible = true
move_button.disabled = false
grab_button.disabled = false
put_button.disabled = false
arrange_button.disabled = false