Files
tekton/scenes/main.tscn5671988860.tmp
T
adtpdn b27b612989 Update input actions and UI layout
Added new input actions for movement and actions in project.godot. Adjusted UI element positions, visibility, and sizing in main.tscn. Added a temporary scene file and updated player.gd.
2025-11-04 11:33:54 +08:00

10010 lines
283 KiB
Plaintext

[gd_scene load_steps=26 format=3 uid="uid://dxn87yj8qnfpp"]
[ext_resource type="MeshLibrary" uid="uid://kcv6ans86ug7" path="res://addons/enhanced_gridmap/meshlibrary/default.tres" id="1_110wo"]
[ext_resource type="Script" uid="uid://co1ads72by6na" path="res://scenes/main.gd" id="1_xcpe3"]
[ext_resource type="Environment" uid="uid://jbptgqvstei3" path="res://assets/main-environment.tres" id="4_ky38j"]
[ext_resource type="StyleBox" uid="uid://dlw1ogamn741n" path="res://assets/styles/box_flat.tres" id="5_dvx6y"]
[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="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"]
[sub_resource type="GDScript" id="GDScript_yc10j"]
script/source = "@tool
class_name EnhancedGridMap
extends GridMap
signal mesh_library_changed
signal grid_updated
@export var columns: int = 10 : set = set_columns
@export var rows: int = 10 : set = set_rows
@export var floors: int = 3 : set = set_floors
@export var auto_generate: bool = false : set = set_auto_generate
@export var normal_items: Array[int] = [0]
@export var non_walkable_items: Array[int] = [4]
@export var hover_item: int = 1
@export var start_item: int = 2
@export var end_item: int = 3
var current_mesh_library: MeshLibrary
var grid_data: Array = [] # 3D array [floor][row][column]
# A* Pathfinding variables (per floor)
var astar_by_floor = {} # Dictionary of AStar2D instances per floor
var path = []
# Update the obstacle items array to use your specified item indices
@export var obstacle_items: Array[int] = [12, 13, 14, 15] # Obstacle items in mesh library
@export var obstacle_directions: Dictionary = {} # Store direction for each placed obstacle: {Vector3i position: Direction}
# Dictionary to store obstacle information: {cell_pos: orientation}
# orientation: 0=North, 1=East, 2=South, 3=West
var obstacles = {}
# Direction and movement systems
enum Direction {
NORTHWEST, NORTH, NORTHEAST,
WEST, CENTER, EAST,
SOUTHWEST, SOUTH, SOUTHEAST,
BLOCKED_NORTH = 10,
BLOCKED_EAST = 11,
BLOCKED_SOUTH = 12,
BLOCKED_WEST = 13
}
var diagonal_movement: bool = false
class NeighborInfo:
var position: Vector2i
var direction: Direction
var is_walkable: bool
func _init(pos: Vector2i, dir: Direction, walkable: bool):
position = pos
direction = dir
is_walkable = walkable
func _ready():
mesh_library_changed.connect(_on_mesh_library_changed)
if not Engine.is_editor_hint() and auto_generate:
generate_grid()
validate_item_indices()
# Core grid management functions
func set_columns(value: int):
columns = value
if auto_generate:
generate_grid()
else:
update_grid_data()
func set_rows(value: int):
rows = value
if auto_generate:
generate_grid()
else:
update_grid_data()
func set_floors(value: int):
floors = value
if auto_generate:
generate_grid()
else:
update_grid_data()
func set_auto_generate(value: bool):
auto_generate = value
if auto_generate:
generate_grid()
# Item validation
func validate_item_indices():
if not mesh_library:
print(\"Warning: No MeshLibrary assigned to GridMap\")
return
var item_list = mesh_library.get_item_list()
var max_index = item_list.size() - 1
normal_items = normal_items.filter(func(item): return item >= 0 and item <= max_index)
hover_item = clamp(hover_item, 0, max_index)
start_item = clamp(start_item, 0, max_index)
end_item = clamp(end_item, 0, max_index)
non_walkable_items = non_walkable_items.filter(func(item): return item >= 0 and item <= max_index)
if normal_items.is_empty():
normal_items = [0]
if non_walkable_items.is_empty():
non_walkable_items = [max_index]
# Grid generation and management
func generate_grid(floor_index: int = -1):
if floor_index == -1:
clear()
for y in range(floors):
generate_floor(y)
else:
clear_floor(floor_index)
generate_floor(floor_index)
update_grid_data()
initialize_astar()
update_astar_costs()
func generate_floor(floor_index: int):
if not mesh_library:
print(\"Error: No MeshLibrary assigned to GridMap\")
return
validate_item_indices()
current_mesh_library = mesh_library
var item_list = mesh_library.get_item_list()
if item_list.size() < 5:
print(\"Warning: MeshLibrary should have at least 5 items\")
for x in range(columns):
for z in range(rows):
set_cell_item(Vector3i(x, floor_index, z), normal_items[0])
# Grid operations
func clear_floor(floor_index: int):
for x in range(columns):
for z in range(rows):
set_cell_item(Vector3i(x, floor_index, z), -1)
update_grid_data()
func clear_grid(floor_index: int = -1):
if floor_index == -1:
clear()
else:
clear_floor(floor_index)
update_grid_data()
func fill_grid(item_index: int, floor_index: int = -1):
if not mesh_library:
print(\"No MeshLibrary assigned to GridMap\")
return
if item_index < 0 or item_index >= mesh_library.get_item_list().size():
print(\"Invalid item index\")
return
if floor_index == -1:
for y in range(floors):
fill_floor(item_index, y)
else:
if floor_index >= 0 and floor_index < floors:
fill_floor(item_index, floor_index)
else:
print(\"Invalid floor index\")
update_grid_data()
initialize_astar()
update_astar_costs()
func fill_floor(item_index: int, floor_index: int):
for x in range(columns):
for z in range(rows):
var cell_pos = Vector3i(x, floor_index, z)
var current_orientation = get_cell_item_orientation(cell_pos)
set_cell_item(cell_pos, item_index, current_orientation)
# Randomization functions
func randomize_grid(floor_index: int = -1):
if floor_index == -1:
for y in range(floors):
randomize_floor(y)
else:
randomize_floor(floor_index)
update_grid_data()
initialize_astar()
update_astar_costs()
func randomize_floor(floor_index: int):
if not mesh_library:
print(\"Error: No MeshLibrary assigned to GridMap\")
return
validate_item_indices()
var rng = RandomNumberGenerator.new()
rng.randomize()
for x in range(columns):
for z in range(rows):
var random_value = rng.randi() % 100
var item_index
if random_value < 80:
item_index = normal_items[rng.randi() % normal_items.size()]
else:
item_index = non_walkable_items[rng.randi() % non_walkable_items.size()]
set_cell_item(Vector3i(x, floor_index, z), item_index)
func randomize_grid_custom(randomize_states: Array, floor_index: int = -1):
if not mesh_library:
print(\"Error: No MeshLibrary assigned to GridMap\")
return
if floor_index == -1:
for y in range(floors):
randomize_floor_custom(randomize_states, y)
else:
if floor_index >= 0 and floor_index < floors:
randomize_floor_custom(randomize_states, floor_index)
else:
print(\"Invalid floor index\")
update_grid_data()
initialize_astar()
update_astar_costs()
func randomize_floor_custom(randomize_states: Array, floor_index: int):
if randomize_states.is_empty():
print(\"No randomize states provided\")
return
var rng = RandomNumberGenerator.new()
rng.randomize()
for x in range(columns):
for z in range(rows):
var cell_pos = Vector3i(x, floor_index, z)
var random_value = rng.randf() * 100
var accumulated_percentage = 0
var selected_state = null
for state in randomize_states:
if state.include_in_randomize:
accumulated_percentage += state.randomize_percentage
if random_value <= accumulated_percentage:
selected_state = state
break
var current_orientation = get_cell_item_orientation(cell_pos)
if selected_state:
set_cell_item(cell_pos, selected_state.id, current_orientation)
else:
var fallback_state = null
for state in randomize_states:
if state.include_in_randomize:
fallback_state = state
break
if fallback_state:
set_cell_item(cell_pos, fallback_state.id, current_orientation)
else:
set_cell_item(cell_pos, normal_items[0], current_orientation)
#func get_neighbors(current_pos: Vector2i, floor_index: int) -> Array[NeighborInfo]:
#var neighbors: Array[NeighborInfo] = []
#
#var directions = {
#Direction.NORTHWEST: Vector2i(-1, -1),
#Direction.NORTH: Vector2i(0, -1),
#Direction.NORTHEAST: Vector2i(1, -1),
#Direction.WEST: Vector2i(-1, 0),
#Direction.EAST: Vector2i(1, 0),
#Direction.SOUTHWEST: Vector2i(-1, 1),
#Direction.SOUTH: Vector2i(0, 1),
#Direction.SOUTHEAST: Vector2i(1, 1)
#}
#
#for dir in directions:
#var offset = directions[dir]
#var neighbor_pos = current_pos + offset
#
#if is_position_valid(neighbor_pos):
#var is_walkable = is_cell_walkable(neighbor_pos, floor_index)
#
## Check for obstacles - specifically for orthogonal movement
#if not is_diagonal_direction(dir) and is_blocked_by_obstacle(current_pos, neighbor_pos, 3):
#is_walkable = false
#
## Special handling for diagonal movement
#if is_diagonal_direction(dir):
#var adjacent1: Vector2i
#var adjacent2: Vector2i
#
#match dir:
#Direction.NORTHWEST:
#adjacent1 = current_pos + Vector2i(-1, 0) # West
#adjacent2 = current_pos + Vector2i(0, -1) # North
#Direction.NORTHEAST:
#adjacent1 = current_pos + Vector2i(1, 0) # East
#adjacent2 = current_pos + Vector2i(0, -1) # North
#Direction.SOUTHWEST:
#adjacent1 = current_pos + Vector2i(-1, 0) # West
#adjacent2 = current_pos + Vector2i(0, 1) # South
#Direction.SOUTHEAST:
#adjacent1 = current_pos + Vector2i(1, 0) # East
#adjacent2 = current_pos + Vector2i(0, 1) # South
#
## For diagonal movement, both adjacent cells must be walkable
## AND the movements to those adjacent cells must not be blocked
#is_walkable = is_walkable and \\
#is_position_valid(adjacent1) and is_cell_walkable(adjacent1, floor_index) and \\
#is_position_valid(adjacent2) and is_cell_walkable(adjacent2, floor_index) and \\
#not is_blocked_by_obstacle(current_pos, adjacent1, 3) and \\
#not is_blocked_by_obstacle(current_pos, adjacent2, 3)
#
#if diagonal_movement or not is_diagonal_direction(dir):
#neighbors.append(NeighborInfo.new(neighbor_pos, dir, is_walkable))
#
#return neighbors
func get_neighbors(current_pos: Vector2i, floor_index: int) -> Array[NeighborInfo]:
var neighbors: Array[NeighborInfo] = []
# Four orthogonal directions
var directions = {
Direction.NORTH: Vector2i(0, -1),
Direction.EAST: Vector2i(1, 0),
Direction.SOUTH: Vector2i(0, 1),
Direction.WEST: Vector2i(-1, 0)
}
# Add diagonal directions if enabled
if diagonal_movement:
directions[Direction.NORTHWEST] = Vector2i(-1, -1)
directions[Direction.NORTHEAST] = Vector2i(1, -1)
directions[Direction.SOUTHWEST] = Vector2i(-1, 1)
directions[Direction.SOUTHEAST] = Vector2i(1, 1)
for dir in directions:
var offset = directions[dir]
var neighbor_pos = current_pos + offset
if is_position_valid(neighbor_pos):
var is_walkable = is_cell_walkable(neighbor_pos, floor_index)
# Check if movement to this neighbor is blocked by obstacles
if not is_diagonal_direction(dir) and is_movement_blocked(current_pos, neighbor_pos, floor_index):
is_walkable = false
if is_diagonal_direction(dir):
# For diagonal movement, check if both orthogonal paths are blocked
var mid1 = Vector2i(neighbor_pos.x, current_pos.y)
var mid2 = Vector2i(current_pos.x, neighbor_pos.y)
var path1_blocked = is_movement_blocked(current_pos, mid1, floor_index)
var path2_blocked = is_movement_blocked(current_pos, mid2, floor_index)
if path1_blocked and path2_blocked:
is_walkable = false
if is_walkable:
neighbors.append(NeighborInfo.new(neighbor_pos, dir, is_walkable))
return neighbors
# Helper functions for neighbor checking
func is_diagonal_direction(direction: Direction) -> bool:
return direction in [Direction.NORTHWEST, Direction.NORTHEAST,
Direction.SOUTHWEST, Direction.SOUTHEAST]
func is_position_valid(pos: Vector2i) -> bool:
return pos.x >= 0 and pos.x < columns and pos.y >= 0 and pos.y < rows
func is_cell_walkable(pos: Vector2i, floor_index: int) -> bool:
var cell_item = get_cell_item(Vector3i(pos.x, floor_index, pos.y))
return cell_item != -1 and not (cell_item in non_walkable_items)
# Improved A* pathfinding
func initialize_astar():
astar_by_floor.clear()
for y in range(floors):
var astar = AStar2D.new()
# Add all points
for x in range(columns):
for z in range(rows):
var point_id = z * columns + x
astar.add_point(point_id, Vector2(x, z))
# Connect points based on neighbors
for x in range(columns):
for z in range(rows):
var current_pos = Vector2i(x, z)
var current_point_id = z * columns + x
if not is_cell_walkable(current_pos, y):
continue
var neighbors = get_neighbors(current_pos, y)
for neighbor in neighbors:
if neighbor.is_walkable:
var neighbor_id = neighbor.position.y * columns + neighbor.position.x
if not astar.are_points_connected(current_point_id, neighbor_id):
var weight = 1.0 if not is_diagonal_direction(neighbor.direction) else 1.4142
# Check if movement is allowed by obstacles
if not is_blocked_by_obstacle(current_pos, neighbor.position, 3):
astar.connect_points(current_point_id, neighbor_id, true)
astar.set_point_weight_scale(neighbor_id, weight)
astar_by_floor[y] = astar
update_astar_costs()
func find_path(start: Vector2, end: Vector2, floor_index: int = 0, clear_path_visual: bool = true) -> Array:
var astar = astar_by_floor.get(floor_index)
if not astar:
return []
var start_point = start.y * columns + start.x
var end_point = end.y * columns + end.x
path = astar.get_point_path(start_point, end_point)
if clear_path_visual:
clear_path_visualization(floor_index)
set_cell_item(Vector3i(start.x, floor_index, start.y), start_item)
set_cell_item(Vector3i(end.x, floor_index, end.y), end_item)
for point in path:
if point != start and point != end:
set_cell_item(Vector3i(point.x, floor_index, point.y), hover_item)
return path
# Path visualization
func clear_path_visualization(floor_index: int = 0):
for x in range(columns):
for z in range(rows):
var cell_item = get_cell_item(Vector3i(x, floor_index, z))
if cell_item == hover_item or cell_item == start_item or cell_item == end_item:
set_cell_item(Vector3i(x, floor_index, z), normal_items[0])
# Cost calculation and updates
func get_cell_cost(x: int, z: int, floor_index: int = 0) -> float:
var cell_item = get_cell_item(Vector3i(x, floor_index, z))
if cell_item in non_walkable_items:
return INF
elif cell_item == hover_item:
return 0.5
elif cell_item == start_item or cell_item == end_item:
return 0.0
return 1.0
func update_astar_costs():
for floor_index in range(floors):
var astar = astar_by_floor.get(floor_index)
if astar:
for x in range(columns):
for z in range(rows):
var point_id = z * columns + x
var cost = get_cell_cost(x, z, floor_index)
if cost == INF:
astar.set_point_disabled(point_id, true)
else:
astar.set_point_disabled(point_id, false)
astar.set_point_weight_scale(point_id, cost)
# Grid data management
func update_grid_data():
grid_data.clear()
for y in range(floors):
var floor_data = []
for z in range(rows):
var row = []
for x in range(columns):
row.append(get_cell_item(Vector3i(x, y, z)))
floor_data.append(row)
grid_data.append(floor_data)
emit_signal(\"grid_updated\")
# Check the obstacle on a cell
func has_obstacle_at(pos: Vector3i) -> bool:
var item = get_cell_item(pos)
return item in obstacle_items
# Get orientation ( rotation )
func get_cell_orientation(pos: Vector3i) -> int:
return get_cell_item_orientation(pos)
# Get obstacle direction
# Get the direction of an obstacle at a specific position
func get_obstacle_direction(pos: Vector3i) -> Direction:
if obstacle_directions.has(pos):
return obstacle_directions[pos]
return Direction.CENTER
func get_obstacle_orientation(pos: Vector3i) -> int:
return get_cell_item_orientation(pos)
func is_movement_blocked(from_pos: Vector2i, to_pos: Vector2i, floor_index: int = 3) -> bool:
# Must be adjacent cells for direct blocking check
if abs(from_pos.x - to_pos.x) + abs(from_pos.y - to_pos.y) != 1:
return false
# Get 3D positions for the cells
var from_pos3d = Vector3i(from_pos.x, floor_index, from_pos.y)
var to_pos3d = Vector3i(to_pos.x, floor_index, to_pos.y)
# Check if the starting cell has an obstacle
if has_obstacle_at(from_pos3d):
var orientation = get_obstacle_orientation(from_pos3d)
# Check if the obstacle is blocking the requested movement direction
if from_pos.y > to_pos.y and orientation == 0: # Moving NORTH, obstacle faces NORTH
return true
elif from_pos.x < to_pos.x and orientation == 1: # Moving EAST, obstacle faces EAST
return true
elif from_pos.y < to_pos.y and orientation == 2: # Moving SOUTH, obstacle faces SOUTH
return true
elif from_pos.x > to_pos.x and orientation == 3: # Moving WEST, obstacle faces WEST
return true
# Check if the destination cell has an obstacle blocking entry
if has_obstacle_at(to_pos3d):
var orientation = get_obstacle_orientation(to_pos3d)
# Check if the obstacle is blocking entry from the requested direction
if to_pos.y < from_pos.y and orientation == 2: # Coming from SOUTH, obstacle faces SOUTH
return true
elif to_pos.x > from_pos.x and orientation == 3: # Coming from WEST, obstacle faces WEST
return true
elif to_pos.y > from_pos.y and orientation == 0: # Coming from NORTH, obstacle faces NORTH
return true
elif to_pos.x < from_pos.x and orientation == 1: # Coming from EAST, obstacle faces EAST
return true
return false
# Function to check if a cell is blocked by any obstacles in its vicinity
func is_cell_blocked_by_obstacles(pos: Vector2i, floor_index: int = 3) -> bool:
var pos3d = Vector3i(pos.x, floor_index, pos.y)
# Check if this cell itself has an obstacle
if has_obstacle_at(pos3d):
return true
# Check all adjacent cells for obstacles that might block this cell
var adjacent_positions = [
Vector2i(pos.x, pos.y - 1), # North
Vector2i(pos.x + 1, pos.y), # East
Vector2i(pos.x, pos.y + 1), # South
Vector2i(pos.x - 1, pos.y), # West
]
for adj_pos in adjacent_positions:
var adj_pos3d = Vector3i(adj_pos.x, floor_index, adj_pos.y)
# Check if position is valid
if is_position_valid(adj_pos) and has_obstacle_at(adj_pos3d):
var orientation = get_obstacle_orientation(adj_pos3d)
# Check if the obstacle is blocking this cell
if adj_pos.y < pos.y and orientation == 0: # Obstacle to NORTH facing NORTH
return true
elif adj_pos.x > pos.x and orientation == 1: # Obstacle to EAST facing EAST
return true
elif adj_pos.y > pos.y and orientation == 2: # Obstacle to SOUTH facing SOUTH
return true
elif adj_pos.x < pos.x and orientation == 3: # Obstacle to WEST facing WEST
return true
return false
# Function to get all cells blocked by an obstacle at a specific position
func get_cells_blocked_by_obstacle(obstacle_pos: Vector2i, orientation: int, floor_index: int = 3) -> Array:
var blocked_cells = []
# Determine which cells are blocked based on orientation
match orientation:
0: # NORTH - blocks the row above
for x in range(max(0, obstacle_pos.x - 1), min(columns, obstacle_pos.x + 2)):
blocked_cells.append(Vector2i(x, obstacle_pos.y - 1))
1: # EAST - blocks the column to the right
for y in range(max(0, obstacle_pos.y - 1), min(rows, obstacle_pos.y + 2)):
blocked_cells.append(Vector2i(obstacle_pos.x + 1, y))
2: # SOUTH - blocks the row below
for x in range(max(0, obstacle_pos.x - 1), min(columns, obstacle_pos.x + 2)):
blocked_cells.append(Vector2i(x, obstacle_pos.y + 1))
3: # WEST - blocks the column to the left
for y in range(max(0, obstacle_pos.y - 1), min(rows, obstacle_pos.y + 2)):
blocked_cells.append(Vector2i(obstacle_pos.x - 1, y))
# Filter out invalid positions
return blocked_cells.filter(func(pos): return is_position_valid(pos))
# Cell rotation handling
func get_cell_rotation(position: Vector3i) -> int:
return get_cell_item_orientation(position)
func set_cell_rotation(position: Vector3i, mode: int):
var item = get_cell_item(position)
if item != -1:
set_cell_item(position, item, mode)
# Mesh library handling
func _on_mesh_library_changed():
validate_item_indices()
if auto_generate:
generate_grid()
_update_cell_option_buttons()
func _update_cell_option_buttons():
if not mesh_library:
return
var item_list = mesh_library.get_item_list()
for x in range(columns):
for z in range(rows):
var position = Vector3i(x, 0, z)
var cell_item = get_cell_item(position)
if cell_item != -1 and cell_item < item_list.size():
set_cell_item(position, cell_item)
else:
set_cell_item(position, 0)
func _set(property, value):
if property.begins_with(\"data/cells\") and Engine.is_editor_hint():
call_deferred(\"_emit_grid_updated\")
return false
func _emit_grid_updated():
emit_signal(\"grid_updated\")
# Toggle diagonal movement
func set_diagonal_movement(enable: bool):
diagonal_movement = enable
initialize_astar()
func is_blocked_by_obstacle(from_pos: Vector2i, to_pos: Vector2i, floor_index: int = 3) -> bool:
# For direct orthogonal movement (up, down, left, right)
if (from_pos.x == to_pos.x and abs(from_pos.y - to_pos.y) == 1) or (from_pos.y == to_pos.y and abs(from_pos.x - to_pos.x) == 1):
return is_movement_blocked(from_pos, to_pos, floor_index)
# For diagonal or longer distances, build a path and check each step
var path = []
# Simple path planning for orthogonal movement
if from_pos.x == to_pos.x or from_pos.y == to_pos.y:
var dx = sign(to_pos.x - from_pos.x)
var dy = sign(to_pos.y - from_pos.y)
var current = from_pos
while current != to_pos:
var next = Vector2i(current.x + dx, current.y + dy)
path.append([current, next])
current = next
else:
# For diagonal movement, check both possible paths
# Path 1: Move horizontally first, then vertically
var mid1 = Vector2i(to_pos.x, from_pos.y)
var path1_blocked = is_blocked_by_obstacle(from_pos, mid1, floor_index) or is_blocked_by_obstacle(mid1, to_pos, floor_index)
# Path 2: Move vertically first, then horizontally
var mid2 = Vector2i(from_pos.x, to_pos.y)
var path2_blocked = is_blocked_by_obstacle(from_pos, mid2, floor_index) or is_blocked_by_obstacle(mid2, to_pos, floor_index)
# Movement is blocked if both paths are blocked
return path1_blocked and path2_blocked
# Check each step in the path
for step in path:
if is_movement_blocked(step[0], step[1], floor_index):
return true
return false
# Place an obstacle at the specified position with a specific orientation
func place_obstacle(pos: Vector3i, obstacle_item: int, orientation: int) -> bool:
# Always place on floor 3
pos.y = 3
if get_cell_item(pos) != -1:
return false # Cell is already occupied
# Set the obstacle item with the specified orientation
set_cell_item(pos, obstacle_item, orientation)
# Store the obstacle information
obstacles[pos] = orientation
# Re-initialize A* pathfinding to account for the new obstacle
initialize_astar()
return true
"
[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"]
[node name="Main" type="Node3D"]
script = ExtResource("1_xcpe3")
enable_bots = false
turn_based_mode = false
[node name="EnhancedGridMap" type="GridMap" parent="."]
mesh_library = ExtResource("1_110wo")
cell_size = Vector3(1, 0.2, 1)
data = {
"cells": PackedInt32Array(0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0, 5, 0, 0, 6, 0, 0, 7, 0, 0, 8, 0, 0, 9, 0, 0, 10, 0, 0, 11, 0, 0, 12, 0, 0, 13, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 1, 3, 0, 1, 4, 0, 1, 5, 0, 1, 6, 0, 1, 7, 0, 1, 8, 0, 1, 9, 0, 1, 10, 0, 1, 11, 0, 1, 12, 0, 1, 13, 0, 2, 0, 0, 2, 1, 0, 2, 2, 0, 2, 3, 0, 2, 4, 0, 2, 5, 0, 2, 6, 0, 2, 7, 0, 2, 8, 0, 2, 9, 0, 2, 10, 0, 2, 11, 0, 2, 12, 0, 2, 13, 0, 3, 0, 0, 3, 1, 0, 3, 2, 0, 3, 3, 0, 3, 4, 0, 3, 5, 0, 3, 6, 0, 3, 7, 0, 3, 8, 0, 3, 9, 0, 3, 10, 0, 3, 11, 0, 3, 12, 0, 3, 13, 0, 4, 0, 0, 4, 1, 0, 4, 2, 0, 4, 3, 0, 4, 4, 0, 4, 5, 0, 4, 6, 0, 4, 7, 0, 4, 8, 0, 4, 9, 0, 4, 10, 0, 4, 11, 0, 4, 12, 0, 4, 13, 0, 5, 0, 0, 5, 1, 0, 5, 2, 0, 5, 3, 0, 5, 4, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 5, 11, 0, 5, 12, 0, 5, 13, 0, 6, 0, 0, 6, 1, 0, 6, 2, 0, 6, 3, 0, 6, 4, 0, 6, 5, 0, 6, 6, 0, 6, 7, 0, 6, 8, 0, 6, 9, 0, 6, 10, 0, 6, 11, 0, 6, 12, 0, 6, 13, 0, 7, 0, 0, 7, 1, 0, 7, 2, 0, 7, 3, 0, 7, 4, 0, 7, 5, 0, 7, 6, 0, 7, 7, 0, 7, 8, 0, 7, 9, 0, 7, 10, 0, 7, 11, 0, 7, 12, 0, 7, 13, 0, 8, 0, 0, 8, 1, 0, 8, 2, 0, 8, 3, 0, 8, 4, 0, 8, 5, 0, 8, 6, 0, 8, 7, 0, 8, 8, 0, 8, 9, 0, 8, 10, 0, 8, 11, 0, 8, 12, 0, 8, 13, 0, 9, 0, 0, 9, 1, 0, 9, 2, 0, 9, 3, 0, 9, 4, 0, 9, 5, 0, 9, 6, 0, 9, 7, 0, 9, 8, 0, 9, 9, 0, 9, 10, 0, 9, 11, 0, 9, 12, 0, 9, 13, 0, 10, 0, 0, 10, 1, 0, 10, 2, 0, 10, 3, 0, 10, 4, 0, 10, 5, 0, 10, 6, 0, 10, 7, 0, 10, 8, 0, 10, 9, 0, 10, 10, 0, 10, 11, 0, 10, 12, 0, 10, 13, 0, 11, 0, 0, 11, 1, 0, 11, 2, 0, 11, 3, 0, 11, 4, 0, 11, 5, 0, 11, 6, 0, 11, 7, 0, 11, 8, 0, 11, 9, 0, 11, 10, 0, 11, 11, 0, 11, 12, 0, 11, 13, 0, 12, 0, 0, 12, 1, 0, 12, 2, 0, 12, 3, 0, 12, 4, 0, 12, 5, 0, 12, 6, 0, 12, 7, 0, 12, 8, 0, 12, 9, 0, 12, 10, 0, 12, 11, 0, 12, 12, 0, 12, 13, 0, 13, 0, 0, 13, 1, 0, 13, 2, 0, 13, 3, 0, 13, 4, 0, 13, 5, 0, 13, 6, 0, 13, 7, 0, 13, 8, 0, 13, 9, 0, 13, 10, 0, 13, 11, 0, 13, 12, 0, 13, 13, 0, 65537, 0, 7, 65537, 1, 7, 65537, 2, 9, 65537, 3, 7, 65537, 4, 9, 65537, 5, 8, 65537, 6, 7, 65537, 7, 8, 65537, 8, 10, 65537, 9, 8, 65537, 10, 7, 65537, 11, 7, 65537, 12, 10, 65537, 13, 10, 65538, 0, 10, 65538, 1, 7, 65538, 2, 9, 65538, 3, 7, 65538, 4, 8, 65538, 5, 10, 65538, 6, 8, 65538, 7, 8, 65538, 8, 8, 65538, 9, 10, 65538, 10, 8, 65538, 11, 10, 65538, 12, 7, 65538, 13, 7, 65539, 0, 7, 65539, 1, 9, 65539, 2, 7, 65539, 3, 9, 65539, 4, 8, 65539, 5, 10, 65539, 6, 10, 65539, 7, 8, 65539, 8, 7, 65539, 9, 10, 65539, 10, 9, 65539, 11, 8, 65539, 12, 8, 65539, 13, 7, 65540, 0, 9, 65540, 1, 8, 65540, 2, 7, 65540, 3, 7, 65540, 4, 9, 65540, 5, 7, 65540, 6, 10, 65540, 7, 10, 65540, 8, 10, 65540, 9, 9, 65540, 10, 8, 65540, 11, 7, 65540, 12, 7, 65540, 13, 9, 65541, 0, 9, 65541, 1, 9, 65541, 2, 10, 65541, 3, 8, 65541, 4, 7, 65541, 5, 9, 65541, 6, 10, 65541, 7, 9, 65541, 8, 8, 65541, 9, 9, 65541, 10, 10, 65541, 11, 9, 65541, 12, 9, 65541, 13, 9, 65542, 0, 10, 65542, 1, 7, 65542, 2, 8, 65542, 3, 8, 65542, 4, 10, 65542, 5, 9, 65542, 6, 8, 65542, 7, 7, 65542, 8, 9, 65542, 9, 8, 65542, 10, 8, 65542, 11, 10, 65542, 12, 10, 65542, 13, 8, 65543, 0, 9, 65543, 1, 9, 65543, 2, 9, 65543, 3, 8, 65543, 4, 10, 65543, 5, 9, 65543, 6, 7, 65543, 7, 7, 65543, 8, 8, 65543, 9, 8, 65543, 10, 7, 65543, 11, 7, 65543, 12, 9, 65543, 13, 10, 65544, 0, 8, 65544, 1, 7, 65544, 2, 8, 65544, 3, 8, 65544, 4, 9, 65544, 5, 9, 65544, 6, 8, 65544, 7, 7, 65544, 8, 8, 65544, 9, 7, 65544, 10, 8, 65544, 11, 10, 65544, 12, 9, 65544, 13, 7, 65545, 0, 8, 65545, 1, 7, 65545, 2, 9, 65545, 3, 9, 65545, 4, 7, 65545, 5, 7, 65545, 6, 10, 65545, 7, 7, 65545, 8, 10, 65545, 9, 10, 65545, 10, 10, 65545, 11, 7, 65545, 12, 10, 65545, 13, 8, 65546, 0, 7, 65546, 1, 7, 65546, 2, 9, 65546, 3, 8, 65546, 4, 7, 65546, 5, 9, 65546, 6, 8, 65546, 7, 7, 65546, 8, 10, 65546, 9, 8, 65546, 10, 9, 65546, 11, 9, 65546, 12, 9, 65546, 13, 8, 65547, 0, 9, 65547, 1, 7, 65547, 2, 10, 65547, 3, 10, 65547, 4, 9, 65547, 5, 10, 65547, 6, 10, 65547, 7, 8, 65547, 8, 10, 65547, 9, 9, 65547, 10, 8, 65547, 11, 8, 65547, 12, 7, 65547, 13, 8, 65548, 0, 7, 65548, 1, 9, 65548, 2, 10, 65548, 3, 9, 65548, 4, 8, 65548, 5, 10, 65548, 6, 10, 65548, 7, 7, 65548, 8, 7, 65548, 9, 9, 65548, 10, 9, 65548, 11, 9, 65548, 12, 10, 65548, 13, 8)
}
script = SubResource("GDScript_yc10j")
columns = 14
rows = 14
floors = 2
obstacle_items = Array[int]([12])
metadata/_editor_floor_ = Vector3(0, 1, 0)
[node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 0.422618, 0.906308, 0, -0.906308, 0.422618, 7, 22.925, 18.4489)
environment = ExtResource("4_ky38j")
current = true
fov = 35.5
[node name="Camera3D200" type="Camera3D" parent="."]
transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 7, 15, 7)
environment = ExtResource("4_ky38j")
projection = 1
current = true
fov = 35.5
size = 23.0
[node name="NetworkPanel" type="Panel" parent="."]
anchors_preset = 4
anchor_top = 0.5
anchor_bottom = 0.5
offset_left = 47.0
offset_top = -137.0
offset_right = 183.0
offset_bottom = -84.0
grow_vertical = 2
theme_override_styles/panel = ExtResource("5_dvx6y")
[node name="NetworkInfo" type="VBoxContainer" parent="NetworkPanel"]
layout_mode = 0
offset_left = 8.0
offset_right = 124.0
offset_bottom = 50.0
[node name="NetworkSideDisplay" type="Label" parent="NetworkPanel/NetworkInfo"]
layout_mode = 2
text = "Network Side"
horizontal_alignment = 1
[node name="UniquePeerID" type="Label" parent="NetworkPanel/NetworkInfo"]
layout_mode = 2
text = "Unique Peer ID"
horizontal_alignment = 1
vertical_alignment = 1
[node name="PlayerboardUI" type="GridContainer" parent="."]
clip_contents = true
anchors_preset = 2
anchor_top = 1.0
anchor_bottom = 1.0
offset_left = 40.0
offset_top = -232.0
offset_right = 236.0
offset_bottom = -36.0
grow_vertical = 0
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot1"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_vv0nt")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot1"]
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_8meci")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot1"]
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_aspsw")
[node name="Slot2" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot2"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot2"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot2"]
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_6gcb6")
[node name="Slot3" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot3"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot3"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot3"]
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_6gcb6")
[node name="Slot4" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot4"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot4"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot4"]
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_6gcb6")
[node name="Slot5" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot5"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot5"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot5"]
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_6gcb6")
[node name="Slot6" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot6"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot6"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot6"]
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_6gcb6")
[node name="Slot7" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot7"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot7"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot7"]
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_6gcb6")
[node name="Slot8" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot8"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot8"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot8"]
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_6gcb6")
[node name="Slot9" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot9"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot9"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot9"]
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_6gcb6")
[node name="Slot10" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot10"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot10"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot10"]
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_6gcb6")
[node name="Slot11" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot11"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot11"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot11"]
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_6gcb6")
[node name="Slot12" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot12"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot12"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot12"]
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_6gcb6")
[node name="Slot13" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot13"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot13"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot13"]
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_6gcb6")
[node name="Slot14" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot14"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot14"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot14"]
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_6gcb6")
[node name="Slot15" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot15"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot15"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot15"]
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_6gcb6")
[node name="Slot16" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot16"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot16"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot16"]
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_6gcb6")
[node name="Slot17" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot17"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot17"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot17"]
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_6gcb6")
[node name="Slot18" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot18"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot18"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot18"]
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_6gcb6")
[node name="Slot19" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot19"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot19"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot19"]
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_6gcb6")
[node name="Slot20" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot20"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot20"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot20"]
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_6gcb6")
[node name="Slot21" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot21"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot21"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot21"]
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_6gcb6")
[node name="Slot22" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot22"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot22"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot22"]
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_6gcb6")
[node name="Slot23" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot23"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot23"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot23"]
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_6gcb6")
[node name="Slot24" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot24"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot24"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot24"]
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_6gcb6")
[node name="Slot25" type="TextureRect" parent="PlayerboardUI"]
layout_mode = 2
texture = ExtResource("6_2vy7d")
[node name="HighlightRect" type="TextureRect" parent="PlayerboardUI/Slot25"]
visible = false
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = ExtResource("7_2nq2l")
[node name="SelectRect" type="TextureRect" parent="PlayerboardUI/Slot25"]
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_b18m4")
[node name="AdjacentRect" type="TextureRect" parent="PlayerboardUI/Slot25"]
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_6gcb6")
[node name="ActionMenu" type="Control" parent="."]
layout_mode = 3
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -160.0
offset_top = -384.0
grow_horizontal = 0
grow_vertical = 0
[node name="ActionButtonContainer" type="VBoxContainer" parent="ActionMenu"]
layout_mode = 0
offset_right = 40.0
offset_bottom = 40.0
[node name="MoveButton" type="Button" parent="ActionMenu/ActionButtonContainer"]
custom_minimum_size = Vector2(100, 100)
layout_mode = 2
text = "Move"
[node name="GrabButton" type="Button" parent="ActionMenu/ActionButtonContainer"]
custom_minimum_size = Vector2(100, 100)
layout_mode = 2
text = "Grab"
[node name="PutButton" type="Button" parent="ActionMenu/ActionButtonContainer"]
custom_minimum_size = Vector2(100, 100)
layout_mode = 2
text = "Put"
[node name="RandomizeButton" type="Button" parent="ActionMenu/ActionButtonContainer"]
layout_mode = 2
text = "Randomize"
[node name="ArrangeButton" type="Button" parent="ActionMenu/ActionButtonContainer"]
layout_mode = 2
text = "Arrange"
[node name="Menu" type="VBoxContainer" parent="."]
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"]
layout_mode = 2
theme_override_styles/focus = ExtResource("5_dvx6y")
theme_override_styles/disabled_mirrored = ExtResource("5_dvx6y")
theme_override_styles/disabled = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed = ExtResource("5_dvx6y")
theme_override_styles/hover_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover = ExtResource("5_dvx6y")
theme_override_styles/pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/pressed = ExtResource("5_dvx6y")
theme_override_styles/normal_mirrored = ExtResource("5_dvx6y")
theme_override_styles/normal = ExtResource("5_dvx6y")
text = "Host"
[node name="Join" type="Button" parent="Menu"]
layout_mode = 2
theme_override_styles/focus = ExtResource("5_dvx6y")
theme_override_styles/disabled_mirrored = ExtResource("5_dvx6y")
theme_override_styles/disabled = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover_pressed = ExtResource("5_dvx6y")
theme_override_styles/hover_mirrored = ExtResource("5_dvx6y")
theme_override_styles/hover = ExtResource("5_dvx6y")
theme_override_styles/pressed_mirrored = ExtResource("5_dvx6y")
theme_override_styles/pressed = ExtResource("5_dvx6y")
theme_override_styles/normal_mirrored = ExtResource("5_dvx6y")
theme_override_styles/normal = ExtResource("5_dvx6y")
text = "Join"
[node name="MessageInput" type="LineEdit" parent="."]
anchors_preset = 7
anchor_left = 0.5
anchor_top = 1.0
anchor_right = 0.5
anchor_bottom = 1.0
offset_left = -208.0
offset_top = -72.0
offset_right = 212.0
offset_bottom = -41.0
grow_horizontal = 2
grow_vertical = 0
theme_override_styles/focus = SubResource("StyleBoxFlat_1cewu")
theme_override_styles/normal = ExtResource("5_dvx6y")
placeholder_text = "Chat"
alignment = 1
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = ExtResource("4_ky38j")
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="AllPlayerGoals" type="HBoxContainer" parent="."]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel1/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel2/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel3/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel4/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel5/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel6/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel7/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel8/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel9/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel10/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel11/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
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"]
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"]
clip_contents = true
layout_mode = 2
columns = 3
[node name="Slot1" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot1"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot2"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot3"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot4"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot5"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot6"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot7"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot8"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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"]
layout_mode = 2
texture = ExtResource("17_hh6ui")
[node name="TileHeart" type="TextureRect" parent="AllPlayerGoals/Panel12/MarginContainer/Playergoals/Slot9"]
visible = false
layout_mode = 2
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"]
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"]
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"]
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="."]
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_focus = SubResource("StyleBoxEmpty_s1l63")
theme_override_styles/tab_selected = ExtResource("18_u5x6e")
theme_override_styles/tab_hovered = ExtResource("19_w1rqq")
theme_override_styles/tab_unselected = ExtResource("20_q6bc1")
current_tab = 0
tabs_position = 1
clip_tabs = false
[node name="1" type="MarginContainer" parent="AllPlayerBoards"]
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"]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/1/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="2" type="MarginContainer" parent="AllPlayerBoards"]
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"]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/2/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="3" type="MarginContainer" parent="AllPlayerBoards"]
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"]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/3/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="4" type="MarginContainer" parent="AllPlayerBoards"]
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"]
clip_contents = true
layout_mode = 2
size_flags_horizontal = 3
columns = 5
[node name="Slot1" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot1"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot2" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot2"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot3" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot3"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot4" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot4"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot5" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot5"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot6" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot6"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot7" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot7"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot8" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot8"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot9" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot9"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot10" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot10"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot11" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot11"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot12" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot12"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot13" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot13"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot14" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot14"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot15" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot15"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot16" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot16"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot17" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot17"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot18" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot18"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot19" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot19"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot20" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot20"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot21" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot21"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot22" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot22"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot23" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot23"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot24" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot24"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[node name="Slot25" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI"]
layout_mode = 2
texture = ExtResource("18_p3nmx")
[node name="TileHeart" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("7_xwcc1")
[node name="TileDiamond" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("8_quhbu")
[node name="TileStar" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("9_i0gbs")
[node name="TileCoin" type="TextureRect" parent="AllPlayerBoards/4/PlayerboardUI/Slot25"]
visible = false
layout_mode = 2
offset_right = 24.0
offset_bottom = 24.0
texture = ExtResource("10_my1qp")
[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"]