diff --git a/.gitattributes b/.gitattributes index ef4fabd..7c65eee 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,3 +7,4 @@ *.anim filter=lfs diff=lfs merge=lfs -text *.mesh filter=lfs diff=lfs merge=lfs -text *.psd filter=lfs diff=lfs merge=lfs -text +*.m4v filter=lfs diff=lfs merge=lfs -text diff --git a/addons/Todo_Manager/ColourPicker.gd b/addons/Todo_Manager/ColourPicker.gd new file mode 100644 index 0000000..39a3f9a --- /dev/null +++ b/addons/Todo_Manager/ColourPicker.gd @@ -0,0 +1,17 @@ +@tool +extends HBoxContainer + +var colour : Color +var title : String: + set = set_title +var index : int + +@onready var colour_picker := $TODOColourPickerButton + +func _ready() -> void: + $TODOColourPickerButton.color = colour + $Label.text = title + +func set_title(value: String) -> void: + title = value + $Label.text = value diff --git a/addons/Todo_Manager/Current.gd b/addons/Todo_Manager/Current.gd new file mode 100644 index 0000000..d3961c9 --- /dev/null +++ b/addons/Todo_Manager/Current.gd @@ -0,0 +1,44 @@ +@tool +extends Panel + +signal tree_built # used for debugging + +const Todo := preload("res://addons/Todo_Manager/todo_class.gd") +const TodoItem := preload("res://addons/Todo_Manager/todoItem_class.gd") + +var _sort_alphabetical := true + +@onready var tree := $Tree as Tree + +func build_tree(todo_item : TodoItem, patterns : Array, cased_patterns : Array[String]) -> void: + tree.clear() + var root := tree.create_item() + root.set_text(0, "Scripts") + var script := tree.create_item(root) + script.set_text(0, todo_item.get_short_path() + " -------") + script.set_metadata(0, todo_item) + for todo in todo_item.todos: + var item := tree.create_item(script) + var content_header : String = todo.content + if "\n" in todo.content: + content_header = content_header.split("\n")[0] + "..." + item.set_text(0, "(%0) - %1".format([todo.line_number, content_header], "%_")) + item.set_tooltip_text(0, todo.content) + item.set_metadata(0, todo) + for i in range(0, len(cased_patterns)): + if cased_patterns[i] == todo.pattern: + item.set_custom_color(0, patterns[i][1]) + emit_signal("tree_built") + + +func sort_alphabetical(a, b) -> bool: + if a.script_path > b.script_path: + return true + else: + return false + +func sort_backwards(a, b) -> bool: + if a.script_path < b.script_path: + return true + else: + return false diff --git a/addons/Todo_Manager/Dock.gd b/addons/Todo_Manager/Dock.gd new file mode 100644 index 0000000..c71b6b2 --- /dev/null +++ b/addons/Todo_Manager/Dock.gd @@ -0,0 +1,297 @@ +@tool +extends Control + +#signal tree_built # used for debugging +enum { CASE_INSENSITIVE, CASE_SENSITIVE } + +const Project := preload("res://addons/Todo_Manager/Project.gd") +const Current := preload("res://addons/Todo_Manager/Current.gd") + +const Todo := preload("res://addons/Todo_Manager/todo_class.gd") +const TodoItem := preload("res://addons/Todo_Manager/todoItem_class.gd") +const ColourPicker := preload("res://addons/Todo_Manager/UI/ColourPicker.tscn") +const Pattern := preload("res://addons/Todo_Manager/UI/Pattern.tscn") +const DEFAULT_PATTERNS := [["\\bTODO\\b", Color("96f1ad"), CASE_INSENSITIVE], ["\\bHACK\\b", Color("d5bc70"), CASE_INSENSITIVE], ["\\bFIXME\\b", Color("d57070"), CASE_INSENSITIVE]] +const DEFAULT_SCRIPT_COLOUR := Color("ccced3") +const DEFAULT_SCRIPT_NAME := false +const DEFAULT_SORT := true + +var plugin : EditorPlugin + +var todo_items : Array + +var script_colour := Color("ccced3") +var ignore_paths : Array[String] = [] +var full_path := false +var auto_refresh := true +var builtin_enabled := false +var _sort_alphabetical := true + +var patterns := [["\\bTODO\\b", Color("96f1ad"), CASE_INSENSITIVE], ["\\bHACK\\b", Color("d5bc70"), CASE_INSENSITIVE], ["\\bFIXME\\b", Color("d57070"), CASE_INSENSITIVE]] + + +@onready var tabs := $VBoxContainer/TabContainer as TabContainer +@onready var project := $VBoxContainer/TabContainer/Project as Project +@onready var current := $VBoxContainer/TabContainer/Current as Current +@onready var project_tree := $VBoxContainer/TabContainer/Project/Tree as Tree +@onready var current_tree := $VBoxContainer/TabContainer/Current/Tree as Tree +@onready var settings_panel := $VBoxContainer/TabContainer/Settings as Panel +@onready var colours_container := $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer3/Colours as VBoxContainer +@onready var pattern_container := $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4/Patterns as VBoxContainer +@onready var ignore_textbox := $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/IgnorePaths/TextEdit as LineEdit +@onready var auto_refresh_button := $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/RefreshCheckButton as CheckButton + +func _ready() -> void: + load_config() + populate_settings() + + +func build_tree() -> void: + if tabs: + match tabs.current_tab: + 0: + project.build_tree(todo_items, ignore_paths, patterns, plugin.cased_patterns, _sort_alphabetical, full_path) + create_config_file() + 1: + current.build_tree(get_active_script(), patterns, plugin.cased_patterns) + create_config_file() + 2: + pass + _: + pass + + +func get_active_script() -> TodoItem: + var current_script : Script = plugin.get_editor_interface().get_script_editor().get_current_script() + if current_script: + var script_path = current_script.resource_path + for todo_item in todo_items: + if todo_item.script_path == script_path: + return todo_item + + # nothing found + var todo_item := TodoItem.new(script_path, []) + return todo_item + else: + # not a script + var todo_item := TodoItem.new("res://Documentation", []) + return todo_item + + +func go_to_script(script_path: String, line_number : int = 0) -> void: + if plugin.get_editor_interface().get_editor_settings().get_setting("text_editor/external/use_external_editor"): + var exec_path = plugin.get_editor_interface().get_editor_settings().get_setting("text_editor/external/exec_path") + var args := get_exec_flags(exec_path, script_path, line_number) + OS.execute(exec_path, args) + else: + var script := load(script_path) + plugin.get_editor_interface().edit_resource(script) + plugin.get_editor_interface().get_script_editor().goto_line(line_number - 1) + +func get_exec_flags(editor_path : String, script_path : String, line_number : int) -> PackedStringArray: + var args : PackedStringArray + var script_global_path = ProjectSettings.globalize_path(script_path) + + if editor_path.ends_with("code.cmd") or editor_path.ends_with("code"): ## VS Code + args.append(ProjectSettings.globalize_path("res://")) + args.append("--goto") + args.append(script_global_path + ":" + str(line_number)) + + elif editor_path.ends_with("rider64.exe") or editor_path.ends_with("rider"): ## Rider + args.append("--line") + args.append(str(line_number)) + args.append(script_global_path) + + else: ## Atom / Sublime + args.append(script_global_path + ":" + str(line_number)) + + return args + +func sort_alphabetical(a, b) -> bool: + if a.script_path > b.script_path: + return true + else: + return false + +func sort_backwards(a, b) -> bool: + if a.script_path < b.script_path: + return true + else: + return false + + +func populate_settings() -> void: + for i in patterns.size(): + ## Create Colour Pickers + var colour_picker: Variant = ColourPicker.instantiate() + colour_picker.colour = patterns[i][1] + colour_picker.title = patterns[i][0] + colour_picker.index = i + colours_container.add_child(colour_picker) + colour_picker.colour_picker.color_changed.connect(change_colour.bind(i)) + + ## Create Patterns + var pattern_edit: Variant = Pattern.instantiate() + pattern_edit.text = patterns[i][0] + pattern_edit.index = i + pattern_container.add_child(pattern_edit) + pattern_edit.line_edit.text_changed.connect(change_pattern.bind(i, + colour_picker)) + pattern_edit.remove_button.pressed.connect(remove_pattern.bind(i, + pattern_edit, colour_picker)) + pattern_edit.case_checkbox.button_pressed = patterns[i][2] + pattern_edit.case_checkbox.toggled.connect(case_sensitive_pattern.bind(i)) + + var pattern_button := $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4/Patterns/AddPatternButton + $VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4/Patterns.move_child(pattern_button, 0) + + # path filtering + var ignore_paths_field := ignore_textbox + if not ignore_paths_field.is_connected("text_changed", _on_ignore_paths_changed): + ignore_paths_field.connect("text_changed", _on_ignore_paths_changed) + var ignore_paths_text := "" + for path in ignore_paths: + ignore_paths_text += path + ", " + ignore_paths_text = ignore_paths_text.trim_suffix(", ") + ignore_paths_field.text = ignore_paths_text + + auto_refresh_button.button_pressed = auto_refresh + + +func rebuild_settings() -> void: + for node in colours_container.get_children(): + node.queue_free() + for node in pattern_container.get_children(): + if node is Button: + continue + node.queue_free() + populate_settings() + + +#### CONFIG FILE #### +func create_config_file() -> void: + var config = ConfigFile.new() + config.set_value("scripts", "full_path", full_path) + config.set_value("scripts", "sort_alphabetical", _sort_alphabetical) + config.set_value("scripts", "script_colour", script_colour) + config.set_value("scripts", "ignore_paths", ignore_paths) + + config.set_value("patterns", "patterns", patterns) + + config.set_value("config", "auto_refresh", auto_refresh) + config.set_value("config", "builtin_enabled", builtin_enabled) + + var err = config.save("res://addons/Todo_Manager/todo.cfg") + + +func load_config() -> void: + var config := ConfigFile.new() + if config.load("res://addons/Todo_Manager/todo.cfg") == OK: + full_path = config.get_value("scripts", "full_path", DEFAULT_SCRIPT_NAME) + _sort_alphabetical = config.get_value("scripts", "sort_alphabetical", DEFAULT_SORT) + script_colour = config.get_value("scripts", "script_colour", DEFAULT_SCRIPT_COLOUR) + ignore_paths = config.get_value("scripts", "ignore_paths", [] as Array[String]) + patterns = config.get_value("patterns", "patterns", DEFAULT_PATTERNS) + auto_refresh = config.get_value("config", "auto_refresh", true) + builtin_enabled = config.get_value("config", "builtin_enabled", false) + else: + create_config_file() + + +#### Events #### +func _on_SettingsButton_toggled(button_pressed: bool) -> void: + settings_panel.visible = button_pressed + if button_pressed == false: + create_config_file() +# plugin.find_tokens_from_path(plugin.script_cache) + if auto_refresh: + plugin.rescan_files(true) + +func _on_Tree_item_activated() -> void: + var item : TreeItem + match tabs.current_tab: + 0: + item = project_tree.get_selected() + 1: + item = current_tree.get_selected() + if item.get_metadata(0) is Todo: + var todo : Todo = item.get_metadata(0) + call_deferred("go_to_script", todo.script_path, todo.line_number) + else: + var todo_item = item.get_metadata(0) + call_deferred("go_to_script", todo_item.script_path) + +func _on_FullPathCheckBox_toggled(button_pressed: bool) -> void: + full_path = button_pressed + +func _on_ScriptColourPickerButton_color_changed(color: Color) -> void: + script_colour = color + +func _on_RescanButton_pressed() -> void: + plugin.rescan_files(true) + +func change_colour(colour: Color, index: int) -> void: + patterns[index][1] = colour + +func change_pattern(value: String, index: int, this_colour: Node) -> void: + patterns[index][0] = value + this_colour.title = value + plugin.rescan_files(true) + +func remove_pattern(index: int, this: Node, this_colour: Node) -> void: + patterns.remove_at(index) + this.queue_free() + this_colour.queue_free() + plugin.rescan_files(true) + +func case_sensitive_pattern(active: bool, index: int) -> void: + if active: + patterns[index][2] = CASE_SENSITIVE + else: + patterns[index][2] = CASE_INSENSITIVE + plugin.rescan_files(true) + +func _on_DefaultButton_pressed() -> void: + patterns = DEFAULT_PATTERNS.duplicate(true) + _sort_alphabetical = DEFAULT_SORT + script_colour = DEFAULT_SCRIPT_COLOUR + full_path = DEFAULT_SCRIPT_NAME + rebuild_settings() + plugin.rescan_files(true) + +func _on_AlphSortCheckBox_toggled(button_pressed: bool) -> void: + _sort_alphabetical = button_pressed + plugin.rescan_files(true) + +func _on_AddPatternButton_pressed() -> void: + patterns.append(["\\bplaceholder\\b", Color.WHITE, CASE_INSENSITIVE]) + rebuild_settings() + +func _on_RefreshCheckButton_toggled(button_pressed: bool) -> void: + auto_refresh = button_pressed + +func _on_Timer_timeout() -> void: + plugin.refresh_lock = false + +func _on_ignore_paths_changed(new_text: String) -> void: + var text = ignore_textbox.text + var split: Array = text.split(',') + ignore_paths.clear() + for elem in split: + if elem == " " || elem == "": + continue + ignore_paths.push_front(elem.lstrip(' ').rstrip(' ')) + # validate so no empty string slips through (all paths ignored) + var i := 0 + for path in ignore_paths: + if (path == "" || path == " "): + ignore_paths.remove_at(i) + i += 1 + plugin.rescan_files(true) + +func _on_TabContainer_tab_changed(tab: int) -> void: + build_tree() + +func _on_BuiltInCheckButton_toggled(button_pressed: bool) -> void: + builtin_enabled = button_pressed + plugin.rescan_files(true) diff --git a/addons/Todo_Manager/Pattern.gd b/addons/Todo_Manager/Pattern.gd new file mode 100644 index 0000000..4e610af --- /dev/null +++ b/addons/Todo_Manager/Pattern.gd @@ -0,0 +1,21 @@ +@tool +extends HBoxContainer + + +var text : String : set = set_text +var disabled : bool +var index : int + +@onready var line_edit := $LineEdit as LineEdit +@onready var remove_button := $RemoveButton as Button +@onready var case_checkbox := %CaseSensativeCheckbox as CheckBox + +func _ready() -> void: + line_edit.text = text + remove_button.disabled = disabled + + +func set_text(value: String) -> void: + text = value + if line_edit: + line_edit.text = value diff --git a/addons/Todo_Manager/Project.gd b/addons/Todo_Manager/Project.gd new file mode 100644 index 0000000..4af0847 --- /dev/null +++ b/addons/Todo_Manager/Project.gd @@ -0,0 +1,73 @@ +@tool +extends Panel + +signal tree_built # used for debugging + +const Todo := preload("res://addons/Todo_Manager/todo_class.gd") + +var _sort_alphabetical := true +var _full_path := false + +@onready var tree := $Tree as Tree + +func build_tree(todo_items : Array, ignore_paths : Array, patterns : Array, cased_patterns: Array[String], sort_alphabetical : bool, full_path : bool) -> void: + _full_path = full_path + tree.clear() + if sort_alphabetical: + todo_items.sort_custom(Callable(self, "sort_alphabetical")) + else: + todo_items.sort_custom(Callable(self, "sort_backwards")) + var root := tree.create_item() + root.set_text(0, "Scripts") + for todo_item in todo_items: + var ignore := false + for ignore_path in ignore_paths: + var script_path : String = todo_item.script_path + if script_path.begins_with(ignore_path) or script_path.begins_with("res://" + ignore_path) or script_path.begins_with("res:///" + ignore_path): + ignore = true + break + if ignore: + continue + var script := tree.create_item(root) + if full_path: + script.set_text(0, todo_item.script_path + " -------") + else: + script.set_text(0, todo_item.get_short_path() + " -------") + script.set_metadata(0, todo_item) + for todo in todo_item.todos: + var item := tree.create_item(script) + var content_header : String = todo.content + if "\n" in todo.content: + content_header = content_header.split("\n")[0] + "..." + item.set_text(0, "(%0) - %1".format([todo.line_number, content_header], "%_")) + item.set_tooltip_text(0, todo.content) + item.set_metadata(0, todo) + for i in range(0, len(cased_patterns)): + if cased_patterns[i] == todo.pattern: + item.set_custom_color(0, patterns[i][1]) + emit_signal("tree_built") + + +func sort_alphabetical(a, b) -> bool: + if _full_path: + if a.script_path < b.script_path: + return true + else: + return false + else: + if a.get_short_path() < b.get_short_path(): + return true + else: + return false + +func sort_backwards(a, b) -> bool: + if _full_path: + if a.script_path > b.script_path: + return true + else: + return false + else: + if a.get_short_path() > b.get_short_path(): + return true + else: + return false diff --git a/addons/Todo_Manager/UI/ColourPicker.tscn b/addons/Todo_Manager/UI/ColourPicker.tscn new file mode 100644 index 0000000..650899f --- /dev/null +++ b/addons/Todo_Manager/UI/ColourPicker.tscn @@ -0,0 +1,21 @@ +[gd_scene load_steps=2 format=3 uid="uid://bie1xn8v1kd66"] + +[ext_resource type="Script" path="res://addons/Todo_Manager/ColourPicker.gd" id="1"] + +[node name="TODOColour" type="HBoxContainer"] +offset_right = 105.0 +offset_bottom = 31.0 +script = ExtResource("1") +metadata/_edit_use_custom_anchors = false + +[node name="Label" type="Label" parent="."] +offset_top = 4.0 +offset_right = 1.0 +offset_bottom = 27.0 + +[node name="TODOColourPickerButton" type="ColorPickerButton" parent="."] +custom_minimum_size = Vector2(40, 0) +offset_left = 65.0 +offset_right = 105.0 +offset_bottom = 31.0 +size_flags_horizontal = 10 diff --git a/addons/Todo_Manager/UI/Dock.tscn b/addons/Todo_Manager/UI/Dock.tscn new file mode 100644 index 0000000..096662a --- /dev/null +++ b/addons/Todo_Manager/UI/Dock.tscn @@ -0,0 +1,315 @@ +[gd_scene load_steps=6 format=3 uid="uid://b6k0dtftankcx"] + +[ext_resource type="Script" path="res://addons/Todo_Manager/Dock.gd" id="1"] +[ext_resource type="Script" path="res://addons/Todo_Manager/Project.gd" id="2"] +[ext_resource type="Script" path="res://addons/Todo_Manager/Current.gd" id="3"] + +[sub_resource type="ButtonGroup" id="ButtonGroup_kqxcu"] + +[sub_resource type="ButtonGroup" id="ButtonGroup_kltg3"] + +[node name="Dock" type="Control"] +custom_minimum_size = Vector2(0, 200) +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_vertical = 3 +script = ExtResource("1") + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_top = 4.0 +grow_horizontal = 2 +grow_vertical = 2 +metadata/_edit_layout_mode = 1 + +[node name="Header" type="HBoxContainer" parent="VBoxContainer"] +visible = false +layout_mode = 2 + +[node name="HeaderLeft" type="HBoxContainer" parent="VBoxContainer/Header"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Title" type="Label" parent="VBoxContainer/Header/HeaderLeft"] +layout_mode = 2 +text = "Todo Dock:" + +[node name="HeaderRight" type="HBoxContainer" parent="VBoxContainer/Header"] +layout_mode = 2 +size_flags_horizontal = 3 +alignment = 2 + +[node name="SettingsButton" type="Button" parent="VBoxContainer/Header/HeaderRight"] +visible = false +layout_mode = 2 +toggle_mode = true +text = "Settings" + +[node name="TabContainer" type="TabContainer" parent="VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Project" type="Panel" parent="VBoxContainer/TabContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +script = ExtResource("2") + +[node name="Tree" type="Tree" parent="VBoxContainer/TabContainer/Project"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +hide_root = true + +[node name="Current" type="Panel" parent="VBoxContainer/TabContainer"] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +script = ExtResource("3") + +[node name="Tree" type="Tree" parent="VBoxContainer/TabContainer/Current"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +hide_folding = true +hide_root = true + +[node name="Settings" type="Panel" parent="VBoxContainer/TabContainer"] +visible = false +layout_mode = 2 + +[node name="ScrollContainer" type="ScrollContainer" parent="VBoxContainer/TabContainer/Settings"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Scripts" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Scripts"] +layout_mode = 2 +text = "Scripts:" + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Scripts"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 5 + +[node name="HBoxContainer2" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer"] +layout_mode = 2 + +[node name="VSeparator" type="VSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2"] +layout_mode = 2 + +[node name="Scripts" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2"] +layout_mode = 2 + +[node name="ScriptName" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptName"] +layout_mode = 2 +text = "Script Name:" + +[node name="FullPathCheckBox" type="CheckBox" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptName"] +layout_mode = 2 +button_group = SubResource("ButtonGroup_kqxcu") +text = "Full path" + +[node name="ShortNameCheckBox" type="CheckBox" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptName"] +layout_mode = 2 +button_pressed = true +button_group = SubResource("ButtonGroup_kqxcu") +text = "Short name" + +[node name="ScriptSort" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptSort"] +layout_mode = 2 +text = "Sort Order:" + +[node name="AlphSortCheckBox" type="CheckBox" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptSort"] +layout_mode = 2 +button_pressed = true +button_group = SubResource("ButtonGroup_kltg3") +text = "Alphabetical" + +[node name="RAlphSortCheckBox" type="CheckBox" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptSort"] +layout_mode = 2 +button_group = SubResource("ButtonGroup_kltg3") +text = "Reverse Alphabetical" + +[node name="ScriptColour" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptColour"] +layout_mode = 2 +text = "Script Colour:" + +[node name="ScriptColourPickerButton" type="ColorPickerButton" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptColour"] +custom_minimum_size = Vector2(40, 0) +layout_mode = 2 +color = Color(0.8, 0.807843, 0.827451, 1) + +[node name="IgnorePaths" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/IgnorePaths"] +layout_mode = 2 +text = "Ignore Paths:" + +[node name="TextEdit" type="LineEdit" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/IgnorePaths"] +custom_minimum_size = Vector2(100, 0) +layout_mode = 2 +expand_to_text_length = true + +[node name="Label3" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/IgnorePaths"] +layout_mode = 2 +text = "(Separated by commas)" + +[node name="TODOColours" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/TODOColours"] +layout_mode = 2 +text = "TODO Colours:" + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/TODOColours"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="HBoxContainer3" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="VSeparator" type="VSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer3"] +layout_mode = 2 + +[node name="Colours" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer3"] +layout_mode = 2 + +[node name="Patterns" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Patterns"] +layout_mode = 2 +text = "Patterns:" + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Patterns"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="HBoxContainer4" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="VSeparator" type="VSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4"] +layout_mode = 2 + +[node name="Patterns" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="AddPatternButton" type="Button" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4/Patterns"] +layout_mode = 2 +size_flags_horizontal = 0 +text = "Add" + +[node name="Config" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Config"] +layout_mode = 2 +text = "Config:" + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/Config"] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="HBoxContainer5" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="VSeparator" type="VSeparator" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5"] +layout_mode = 2 + +[node name="Patterns" type="VBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5"] +layout_mode = 2 + +[node name="RefreshCheckButton" type="CheckButton" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns"] +layout_mode = 2 +size_flags_horizontal = 0 +button_pressed = true +text = "Auto Refresh" + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns"] +layout_mode = 2 + +[node name="BuiltInCheckButton" type="CheckButton" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/HBoxContainer"] +layout_mode = 2 +text = "Scan Built-in Scripts" + +[node name="Label" type="Label" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/HBoxContainer"] +layout_mode = 2 + +[node name="DefaultButton" type="Button" parent="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns"] +layout_mode = 2 +size_flags_horizontal = 0 +text = "Reset to default" + +[node name="Timer" type="Timer" parent="."] +one_shot = true + +[node name="RescanButton" type="Button" parent="."] +layout_mode = 1 +anchors_preset = 1 +anchor_left = 1.0 +anchor_right = 1.0 +offset_left = -102.0 +offset_top = 3.0 +offset_bottom = 34.0 +grow_horizontal = 0 +text = "Rescan Files" +flat = true + +[connection signal="toggled" from="VBoxContainer/Header/HeaderRight/SettingsButton" to="." method="_on_SettingsButton_toggled"] +[connection signal="tab_changed" from="VBoxContainer/TabContainer" to="." method="_on_TabContainer_tab_changed"] +[connection signal="item_activated" from="VBoxContainer/TabContainer/Project/Tree" to="." method="_on_Tree_item_activated"] +[connection signal="item_activated" from="VBoxContainer/TabContainer/Current/Tree" to="." method="_on_Tree_item_activated"] +[connection signal="toggled" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptName/FullPathCheckBox" to="." method="_on_FullPathCheckBox_toggled"] +[connection signal="toggled" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptSort/AlphSortCheckBox" to="." method="_on_AlphSortCheckBox_toggled"] +[connection signal="color_changed" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/VBoxContainer/HBoxContainer2/Scripts/ScriptColour/ScriptColourPickerButton" to="." method="_on_ScriptColourPickerButton_color_changed"] +[connection signal="pressed" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer4/Patterns/AddPatternButton" to="." method="_on_AddPatternButton_pressed"] +[connection signal="toggled" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/RefreshCheckButton" to="." method="_on_RefreshCheckButton_toggled"] +[connection signal="toggled" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/HBoxContainer/BuiltInCheckButton" to="." method="_on_BuiltInCheckButton_toggled"] +[connection signal="pressed" from="VBoxContainer/TabContainer/Settings/ScrollContainer/MarginContainer/VBoxContainer/HBoxContainer5/Patterns/DefaultButton" to="." method="_on_DefaultButton_pressed"] +[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"] +[connection signal="pressed" from="RescanButton" to="." method="_on_RescanButton_pressed"] diff --git a/addons/Todo_Manager/UI/Pattern.tscn b/addons/Todo_Manager/UI/Pattern.tscn new file mode 100644 index 0000000..fb45615 --- /dev/null +++ b/addons/Todo_Manager/UI/Pattern.tscn @@ -0,0 +1,26 @@ +[gd_scene load_steps=2 format=3 uid="uid://bx11sel2q5wli"] + +[ext_resource type="Script" path="res://addons/Todo_Manager/Pattern.gd" id="1"] + +[node name="Pattern" type="HBoxContainer"] +script = ExtResource("1") + +[node name="LineEdit" type="LineEdit" parent="."] +layout_mode = 2 +size_flags_horizontal = 0 +expand_to_text_length = true + +[node name="RemoveButton" type="Button" parent="."] +layout_mode = 2 +text = "-" + +[node name="MarginContainer" type="MarginContainer" parent="."] +custom_minimum_size = Vector2(20, 0) +layout_mode = 2 +size_flags_horizontal = 0 + +[node name="CaseSensativeCheckbox" type="CheckBox" parent="."] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 0 +text = "Case Sensitive" diff --git a/addons/Todo_Manager/doc/images/Instruct1.png b/addons/Todo_Manager/doc/images/Instruct1.png new file mode 100644 index 0000000..ba508bc --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817dbaab7a63ba4c17665822f3871052c49cf9784255466eef6fc9ee831602f8 +size 113683 diff --git a/addons/Todo_Manager/doc/images/Instruct1.png.import b/addons/Todo_Manager/doc/images/Instruct1.png.import new file mode 100644 index 0000000..677b1fd --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwjd16lfj6n1b" +path="res://.godot/imported/Instruct1.png-698c6faa3ef3ac4960807faa3e028bd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/Instruct1.png" +dest_files=["res://.godot/imported/Instruct1.png-698c6faa3ef3ac4960807faa3e028bd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/Instruct2.png b/addons/Todo_Manager/doc/images/Instruct2.png new file mode 100644 index 0000000..b0420e0 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8168430474734117424045014415f25aec8130e66101e86e3ce5505617ab60c0 +size 12144 diff --git a/addons/Todo_Manager/doc/images/Instruct2.png.import b/addons/Todo_Manager/doc/images/Instruct2.png.import new file mode 100644 index 0000000..2300e92 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr2ffgio54laa" +path="res://.godot/imported/Instruct2.png-4e8664e49d00a397bbd539f7dee976ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/Instruct2.png" +dest_files=["res://.godot/imported/Instruct2.png-4e8664e49d00a397bbd539f7dee976ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/Instruct3.png b/addons/Todo_Manager/doc/images/Instruct3.png new file mode 100644 index 0000000..77f09f3 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ea8ddedf88d044c9f7bf7cd32c6cbfc190e4013543852fb2ed99c25300681e +size 58592 diff --git a/addons/Todo_Manager/doc/images/Instruct3.png.import b/addons/Todo_Manager/doc/images/Instruct3.png.import new file mode 100644 index 0000000..f7dc8e7 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuk5tkwruicsi" +path="res://.godot/imported/Instruct3.png-3cc62ed99bf29d90b803cb8eb40881e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/Instruct3.png" +dest_files=["res://.godot/imported/Instruct3.png-3cc62ed99bf29d90b803cb8eb40881e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/Instruct4.png b/addons/Todo_Manager/doc/images/Instruct4.png new file mode 100644 index 0000000..eb81149 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04d6ff24a5f047f715d70a50f0c52be36d2a2c537e45d332d3255e36226abcf +size 20209 diff --git a/addons/Todo_Manager/doc/images/Instruct4.png.import b/addons/Todo_Manager/doc/images/Instruct4.png.import new file mode 100644 index 0000000..8e679cc --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da6v32n775iiw" +path="res://.godot/imported/Instruct4.png-bf5aa1cffc066175cecf9281b0774809.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/Instruct4.png" +dest_files=["res://.godot/imported/Instruct4.png-bf5aa1cffc066175cecf9281b0774809.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/Instruct5.png b/addons/Todo_Manager/doc/images/Instruct5.png new file mode 100644 index 0000000..d1e91dc --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e011e32e069d7405bd86b1662e15b3d06a8216c757556a2b8ae80948334d93d +size 48950 diff --git a/addons/Todo_Manager/doc/images/Instruct5.png.import b/addons/Todo_Manager/doc/images/Instruct5.png.import new file mode 100644 index 0000000..cf3ae24 --- /dev/null +++ b/addons/Todo_Manager/doc/images/Instruct5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35fe7qpcg8xu" +path="res://.godot/imported/Instruct5.png-001538ed8b5682dcf232de08035aab38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/Instruct5.png" +dest_files=["res://.godot/imported/Instruct5.png-001538ed8b5682dcf232de08035aab38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png new file mode 100644 index 0000000..f386245 --- /dev/null +++ b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ae04fab31bf96556ed4d3a93a09b200df8e5bd54c90aa1f054331cd1a7719f +size 23697 diff --git a/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import new file mode 100644 index 0000000..30e096e --- /dev/null +++ b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by6cy0f8y06db" +path="res://.godot/imported/TODO_Manager_Logo.png-e07d7ec75201c66b732ef87ec1bece15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/TODO_Manager_Logo.png" +dest_files=["res://.godot/imported/TODO_Manager_Logo.png-e07d7ec75201c66b732ef87ec1bece15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/TodoExternal.gif b/addons/Todo_Manager/doc/images/TodoExternal.gif new file mode 100644 index 0000000..25d0850 Binary files /dev/null and b/addons/Todo_Manager/doc/images/TodoExternal.gif differ diff --git a/addons/Todo_Manager/doc/images/example1.png b/addons/Todo_Manager/doc/images/example1.png new file mode 100644 index 0000000..1b3f68c --- /dev/null +++ b/addons/Todo_Manager/doc/images/example1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4937360a6d57d237888599d0ddd9f963fc6a986a4a3813d2d6b448686f4fa12f +size 29788 diff --git a/addons/Todo_Manager/doc/images/example1.png.import b/addons/Todo_Manager/doc/images/example1.png.import new file mode 100644 index 0000000..a3c767f --- /dev/null +++ b/addons/Todo_Manager/doc/images/example1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm4238rk6sken" +path="res://.godot/imported/example1.png-6386c332ca46e1e62ea061b956a901cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/example1.png" +dest_files=["res://.godot/imported/example1.png-6386c332ca46e1e62ea061b956a901cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/doc/images/example2.png b/addons/Todo_Manager/doc/images/example2.png new file mode 100644 index 0000000..c4a6584 --- /dev/null +++ b/addons/Todo_Manager/doc/images/example2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad39820b0814908951ebf8226c1a6c7d88a8d797a815345a0f1fd4377a1c2595 +size 30958 diff --git a/addons/Todo_Manager/doc/images/example2.png.import b/addons/Todo_Manager/doc/images/example2.png.import new file mode 100644 index 0000000..4ae7c03 --- /dev/null +++ b/addons/Todo_Manager/doc/images/example2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://843b7l0pm8qw" +path="res://.godot/imported/example2.png-2e3a8f9cd1e178daf22b83dc0513f37a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/Todo_Manager/doc/images/example2.png" +dest_files=["res://.godot/imported/example2.png-2e3a8f9cd1e178daf22b83dc0513f37a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/Todo_Manager/plugin.cfg b/addons/Todo_Manager/plugin.cfg new file mode 100644 index 0000000..256be46 --- /dev/null +++ b/addons/Todo_Manager/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="Todo Manager" +description="Dock for housing TODO messages." +author="Peter de Vroom" +version="2.3.1" +script="plugin.gd" diff --git a/addons/Todo_Manager/plugin.gd b/addons/Todo_Manager/plugin.gd new file mode 100644 index 0000000..511458d --- /dev/null +++ b/addons/Todo_Manager/plugin.gd @@ -0,0 +1,286 @@ +@tool +extends EditorPlugin + +const DockScene := preload("res://addons/Todo_Manager/UI/Dock.tscn") +const Dock := preload("res://addons/Todo_Manager/Dock.gd") +const Todo := preload("res://addons/Todo_Manager/todo_class.gd") +const TodoItem := preload("res://addons/Todo_Manager/todoItem_class.gd") + +var _dockUI : Dock + +class TodoCacheValue: + var todos: Array + var last_modified_time: int + + func _init(todos: Array, last_modified_time: int): + self.todos = todos + self.last_modified_time = last_modified_time + +var todo_cache : Dictionary # { key: script_path, value: TodoCacheValue } +var remove_queue : Array +var combined_pattern : String +var cased_patterns : Array[String] + +var refresh_lock := false # makes sure _on_filesystem_changed only triggers once + + +func _enter_tree() -> void: + _dockUI = DockScene.instantiate() as Control + add_control_to_bottom_panel(_dockUI, "TODO") + get_editor_interface().get_resource_filesystem().connect("filesystem_changed", + _on_filesystem_changed) + get_editor_interface().get_file_system_dock().connect("file_removed", queue_remove) + get_editor_interface().get_script_editor().connect("editor_script_changed", + _on_active_script_changed) + _dockUI.plugin = self + + combined_pattern = combine_patterns(_dockUI.patterns) + find_tokens_from_path(find_scripts()) + _dockUI.build_tree() + + +func _exit_tree() -> void: + _dockUI.create_config_file() + remove_control_from_bottom_panel(_dockUI) + _dockUI.free() + + +func queue_remove(file: String): + for i in _dockUI.todo_items.size() - 1: + if _dockUI.todo_items[i].script_path == file: + _dockUI.todo_items.remove_at(i) + + +func find_tokens_from_path(scripts: Array[String]) -> void: + for script_path in scripts: + var file := FileAccess.open(script_path, FileAccess.READ) + var contents := file.get_as_text() + if script_path.ends_with(".tscn"): + handle_built_in_scripts(contents, script_path) + else: + find_tokens(contents, script_path) + + +func handle_built_in_scripts(contents: String, resource_path: String): + var s := contents.split("sub_resource type=\"GDScript\"") + if s.size() <= 1: + return + for i in range(1, s.size()): + var script_components := s[i].split("script/source") + var script_name = script_components[0].substr(5, 14) + find_tokens(script_components[1], resource_path + "::" + script_name) + + +func find_tokens(text: String, script_path: String) -> void: + var cached_todos = get_cached_todos(script_path) + if cached_todos.size() != 0: +# var i := 0 +# for todo_item in _dockUI.todo_items: +# if todo_item.script_path == script_path: +# _dockUI.todo_items.remove_at(i) +# i += 1 + var todo_item := TodoItem.new(script_path, cached_todos) + _dockUI.todo_items.append(todo_item) + else: + var regex = RegEx.new() + # if regex.compile("#\\s*\\bTODO\\b.*|#\\s*\\bHACK\\b.*") == OK: + if regex.compile(combined_pattern) == OK: + var result : Array[RegExMatch] = regex.search_all(text) + if result.is_empty(): + for i in _dockUI.todo_items.size(): + if _dockUI.todo_items[i].script_path == script_path: + _dockUI.todo_items.remove_at(i) + return # No tokens found + var match_found : bool + var i := 0 + for todo_item in _dockUI.todo_items: + if todo_item.script_path == script_path: + match_found = true + var updated_todo_item := update_todo_item(todo_item, result, text, script_path) + _dockUI.todo_items.remove_at(i) + _dockUI.todo_items.insert(i, updated_todo_item) + break + i += 1 + if !match_found: + _dockUI.todo_items.append(create_todo_item(result, text, script_path)) + + +func create_todo_item(regex_results: Array[RegExMatch], text: String, script_path: String) -> TodoItem: + var todo_item = TodoItem.new(script_path, []) + todo_item.script_path = script_path + var last_line_number := 0 + var lines := text.split("\n") + for r in regex_results: + var new_todo : Todo = create_todo(r.get_string(), script_path) + new_todo.line_number = get_line_number(r.get_string(), text, last_line_number) + # GD Multiline comment + var trailing_line := new_todo.line_number + var should_break = false + while trailing_line < lines.size() and lines[trailing_line].dedent().begins_with("#"): + for other_r in regex_results: + if lines[trailing_line] in other_r.get_string(): + should_break = true + break + if should_break: + break + + new_todo.content += "\n" + lines[trailing_line] + trailing_line += 1 + + last_line_number = new_todo.line_number + todo_item.todos.append(new_todo) + cache_todos(todo_item.todos, script_path) + return todo_item + + +func update_todo_item(todo_item: TodoItem, regex_results: Array[RegExMatch], text: String, script_path: String) -> TodoItem: + todo_item.todos.clear() + var lines := text.split("\n") + for r in regex_results: + var new_todo : Todo = create_todo(r.get_string(), script_path) + new_todo.line_number = get_line_number(r.get_string(), text) + # GD Multiline comment + var trailing_line := new_todo.line_number + var should_break = false + while trailing_line < lines.size() and lines[trailing_line].dedent().begins_with("#"): + for other_r in regex_results: + if lines[trailing_line] in other_r.get_string(): + should_break = true + break + if should_break: + break + + new_todo.content += "\n" + lines[trailing_line] + trailing_line += 1 + todo_item.todos.append(new_todo) + return todo_item + + +func get_line_number(what: String, from: String, start := 0) -> int: + what = what.split('\n')[0] # Match first line of multiline C# comments + var temp_array := from.split('\n') + var lines := Array(temp_array) + var line_number# = lines.find(what) + 1 + for i in range(start, lines.size()): + if what in lines[i]: + line_number = i + 1 # +1 to account of 0-based array vs 1-based line numbers + break + else: + line_number = 0 # This is an error + return line_number + + +func _on_filesystem_changed() -> void: + if !refresh_lock: + if _dockUI.auto_refresh: + refresh_lock = true + _dockUI.get_node("Timer").start() + rescan_files(false) + + +func find_scripts() -> Array[String]: + var scripts : Array[String] + var directory_queue : Array[String] + var dir := DirAccess.open("res://") + if dir.get_open_error() == OK: + get_dir_contents(dir, scripts, directory_queue) + else: + printerr("TODO_Manager: There was an error during find_scripts()") + + while not directory_queue.is_empty(): + if dir.change_dir(directory_queue[0]) == OK: + get_dir_contents(dir, scripts, directory_queue) + else: + printerr("TODO_Manager: There was an error at: " + directory_queue[0]) + directory_queue.pop_front() + + return scripts + + +func cache_todos(todos: Array, script_path: String) -> void: + var last_modified_time = FileAccess.get_modified_time(script_path) + todo_cache[script_path] = TodoCacheValue.new(todos, last_modified_time) + + +func get_cached_todos(script_path: String) -> Array: + if todo_cache.has(script_path) and !script_path.contains("tscn::"): + var cached_value: TodoCacheValue = todo_cache[script_path] + if cached_value.last_modified_time == FileAccess.get_modified_time(script_path): + + return cached_value.todos + return [] + +func get_dir_contents(dir: DirAccess, scripts: Array[String], directory_queue: Array[String]) -> void: + dir.include_navigational = false + dir.include_hidden = false + dir.list_dir_begin() + var file_name : String = dir.get_next() + + while file_name != "": + if dir.current_is_dir(): + if file_name == ".import" or file_name == ".mono": # Skip .import folder which should never have scripts + pass + else: + directory_queue.append(dir.get_current_dir().path_join(file_name)) + else: + if file_name.ends_with(".gd") or file_name.ends_with(".cs") \ + or file_name.ends_with(".c") or file_name.ends_with(".cpp") or file_name.ends_with(".h") \ + or ((file_name.ends_with(".tscn") and _dockUI.builtin_enabled)): + scripts.append(dir.get_current_dir().path_join(file_name)) + file_name = dir.get_next() + + +func rescan_files(clear_cache: bool) -> void: + _dockUI.todo_items.clear() + if clear_cache: + todo_cache.clear() + combined_pattern = combine_patterns(_dockUI.patterns) + find_tokens_from_path(find_scripts()) + _dockUI.build_tree() + + +func combine_patterns(patterns: Array) -> String: + # Case Sensitivity + cased_patterns = [] + for pattern in patterns: + if pattern[2] == _dockUI.CASE_INSENSITIVE: + cased_patterns.append(pattern[0].insert(0, "((?i)") + ")") + else: + cased_patterns.append("(" + pattern[0] + ")") + + if patterns.size() == 1: + return cased_patterns[0] + else: + var pattern_string := "((\\/\\*)|(#|\\/\\/))\\s*(" + for i in range(patterns.size()): + if i == 0: + pattern_string += cased_patterns[i] + else: + pattern_string += "|" + cased_patterns[i] + pattern_string += ")(?(2)[\\s\\S]*?\\*\\/|.*)" + return pattern_string + + +func create_todo(todo_string: String, script_path: String) -> Todo: + var todo := Todo.new() + var regex = RegEx.new() + for pattern in cased_patterns: + if regex.compile(pattern) == OK: + var result : RegExMatch = regex.search(todo_string) + if result: + todo.pattern = pattern + todo.title = result.strings[0] + else: + continue + else: + printerr("Error compiling " + pattern) + + todo.content = todo_string + todo.script_path = script_path + return todo + + +func _on_active_script_changed(script) -> void: + if _dockUI: + if _dockUI.tabs.current_tab == 1: + _dockUI.build_tree() diff --git a/addons/Todo_Manager/todo.cfg b/addons/Todo_Manager/todo.cfg new file mode 100644 index 0000000..acef3bc --- /dev/null +++ b/addons/Todo_Manager/todo.cfg @@ -0,0 +1,15 @@ +[scripts] + +full_path=false +sort_alphabetical=true +script_colour=Color(0.8, 0.807843, 0.827451, 1) +ignore_paths=Array[String]([]) + +[patterns] + +patterns=[["\\bTODO\\b", Color(0.588235, 0.945098, 0.678431, 1), 0], ["\\bHACK\\b", Color(0.835294, 0.737255, 0.439216, 1), 0], ["\\bFIXME\\b", Color(0.835294, 0.439216, 0.439216, 1), 0]] + +[config] + +auto_refresh=true +builtin_enabled=false diff --git a/addons/Todo_Manager/todoItem_class.gd b/addons/Todo_Manager/todoItem_class.gd new file mode 100644 index 0000000..9bcb000 --- /dev/null +++ b/addons/Todo_Manager/todoItem_class.gd @@ -0,0 +1,18 @@ +@tool +extends RefCounted + +var script_path : String +var todos : Array + +func _init(script_path: String, todos: Array): + self.script_path = script_path + self.todos = todos + +func get_short_path() -> String: + var temp_array := script_path.rsplit('/', false, 1) + var short_path : String + if not temp_array.size() > 1: + short_path = "(!)" + temp_array[0] + else: + short_path = temp_array[1] + return short_path diff --git a/addons/Todo_Manager/todo_class.gd b/addons/Todo_Manager/todo_class.gd new file mode 100644 index 0000000..af6b26b --- /dev/null +++ b/addons/Todo_Manager/todo_class.gd @@ -0,0 +1,9 @@ +@tool +extends RefCounted + + +var pattern : String +var title : String +var content : String +var script_path : String +var line_number : int diff --git a/animations/player/Walk.res b/animations/player/Walk.res new file mode 100644 index 0000000..58db0b4 --- /dev/null +++ b/animations/player/Walk.res @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bceb866aa8f92153c8c47be186b545b7efa5d7c595e8f914580e084a92b36d23 +size 1832 diff --git a/animations/player/idle.res b/animations/player/idle.res new file mode 100644 index 0000000..84f86a1 --- /dev/null +++ b/animations/player/idle.res @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4f4701a1df9b7e7178da31ce3bc91a5cc51617003e0d7632162e63761fc96d +size 1987 diff --git a/core/player.gd b/core/player.gd new file mode 100644 index 0000000..639ab18 --- /dev/null +++ b/core/player.gd @@ -0,0 +1,54 @@ +extends CharacterBody2D + +@export_group("Skins") +@export var CurrentSkin: CanvasTexture +@export var CurrentHat: CanvasTexture + +const SPEED = 1000.0 + +func teleport(location:Transform2D , direction:float = 1): + transform = location + scale = Vector2(direction,1) + +# Change the skin on every sprite +func changeSkin(NewSkin:CanvasTexture,_NewHat:CanvasTexture = null): + CurrentSkin = NewSkin + if (_NewHat): + CurrentHat = _NewHat + + for Sprite :Sprite2D in $Skeleton2D.get_children(): + if (Sprite.has_meta("Type") and Sprite.get_meta("Type") == "Skin"): + Sprite.texture = CurrentSkin + if (Sprite.has_meta("Type") and Sprite.get_meta("Type") == "Hat"): + Sprite.texture = CurrentHat + + + + + +func get_input(): + var directionX = Input.get_axis("move_left", "move_right") + var directionY = Input.get_axis("move_up", "move_down") + #region Movement + ## Get the input direction and handle the movement/deceleration. + if directionX : + velocity.x = directionX * SPEED + else: + velocity.x = move_toward(velocity.x, 0, SPEED) + if directionY: + velocity.y = directionY * SPEED + else: + velocity.y = move_toward(velocity.y, 0, SPEED) + #endregion + #region Animation + if (directionX < 0): + $Skeleton2D/root/Hips.set_scale(Vector2(1, 1)) + if (directionX > 0): + $Skeleton2D/root/Hips.set_scale(Vector2(-1, 1)) + + $AnimationTree.set("parameters/WalkRun/blend_position",max(abs(velocity.x),abs(velocity.y))) + #endregion + +func _physics_process(delta): + get_input() + move_and_slide() diff --git a/player.tscn b/core/player.tscn similarity index 78% rename from player.tscn rename to core/player.tscn index dec33d3..7d99c44 100644 --- a/player.tscn +++ b/core/player.tscn @@ -1,12 +1,11 @@ -[gd_scene load_steps=29 format=3 uid="uid://0m1hk2nu4bps"] +[gd_scene load_steps=21 format=3 uid="uid://0m1hk2nu4bps"] -[ext_resource type="Script" path="res://player.gd" id="1_0pgv8"] -[ext_resource type="Texture2D" uid="uid://5pmqr3y62guu" path="res://player/currentCloth.tres" id="2_45h8h"] -[ext_resource type="Animation" uid="uid://b85dikp6ps8i2" path="res://player/animations/idle.res" id="2_ymiw5"] -[ext_resource type="Animation" uid="uid://2woypk4u40b5" path="res://player/animations/WalkLeft.res" id="3_2eohq"] -[ext_resource type="Texture2D" uid="uid://5qixrbrclydr" path="res://player/currentHat.tres" id="3_qyf3b"] -[ext_resource type="Animation" uid="uid://d3wpyd6di1ada" path="res://player/animations/WalkRight.res" id="4_pyvsf"] -[ext_resource type="Texture2D" uid="uid://sod0ms1cfkjf" path="res://player/playerSkin_ref.png" id="4_ytgpb"] +[ext_resource type="Script" path="res://core/player.gd" id="1_whhfc"] +[ext_resource type="Texture2D" uid="uid://5pmqr3y62guu" path="res://textures/player/currentCloth.tres" id="2_w1l4c"] +[ext_resource type="Texture2D" uid="uid://5qixrbrclydr" path="res://textures/player/currentHat.tres" id="3_ybl0v"] +[ext_resource type="Animation" uid="uid://bd0mi2x4pkf70" path="res://animations/player/Walk.res" id="4_56ghs"] +[ext_resource type="Animation" uid="uid://b85dikp6ps8i2" path="res://animations/player/idle.res" id="5_uweie"] +[ext_resource type="Texture2D" uid="uid://sod0ms1cfkjf" path="res://textures/player/playerSkin_ref.png" id="6_3ryww"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_kapu3"] size = Vector2(192, 148) @@ -437,188 +436,171 @@ tracks/37/keys = { [sub_resource type="AnimationLibrary" id="AnimationLibrary_4k813"] _data = { "RESET": SubResource("Animation_oktsg"), -"WalkLeft": ExtResource("3_2eohq"), -"WalkRight": ExtResource("4_pyvsf"), -"idle": ExtResource("2_ymiw5") +"Walk": ExtResource("4_56ghs"), +"idle": ExtResource("5_uweie") } -[sub_resource type="AnimationNodeBlend2" id="AnimationNodeBlend2_ydofw"] -filters = ["Skeleton2D/root/Hips/LegLeft:position:x", "Skeleton2D/root/Hips/LegLeft:position:y", "Skeleton2D/root/Hips/LegLeft:rotation", "Skeleton2D/root/Hips/LegRight:position:x", "Skeleton2D/root/Hips/LegRight:position:y", "Skeleton2D/root/Hips/LegRight:rotation"] - -[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_hn1cf"] - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_myrjl"] -animation = &"WalkLeft" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_50xfb"] -animation = &"WalkRight" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_i0qvo"] -animation = &"WalkLeft" - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ml43n"] -animation = &"WalkRight" - -[sub_resource type="AnimationNodeBlendSpace2D" id="AnimationNodeBlendSpace2D_l88j3"] -blend_point_0/node = SubResource("AnimationNodeAnimation_i0qvo") -blend_point_0/pos = Vector2(-1, 0) -blend_point_1/node = SubResource("AnimationNodeAnimation_ml43n") -blend_point_1/pos = Vector2(1, 0) - -[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_dx8h8"] +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_paj7q"] animation = &"idle" -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_ogkr4"] -advance_mode = 2 +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_w0twr"] +animation = &"Walk" -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_q2u5u"] -advance_mode = 2 -advance_condition = &"WalkLeft" +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_17l2l"] +animation = &"Walk" -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_0oq83"] -xfade_time = 0.2 -advance_mode = 2 -advance_condition = &"Idle" +[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_66x5k"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_p8n5f"] -advance_mode = 2 -advance_condition = &"WalkRight" +[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_p4347"] +graph_offset = Vector2(-455.578, -2.44228) +nodes/Animation/node = SubResource("AnimationNodeAnimation_17l2l") +nodes/Animation/position = Vector2(0, 120) +nodes/TimeScale/node = SubResource("AnimationNodeTimeScale_66x5k") +nodes/TimeScale/position = Vector2(140, 120) +nodes/output/position = Vector2(280, 120) +node_connections = [&"TimeScale", 0, &"Animation", &"output", 0, &"TimeScale"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_yhvwn"] -xfade_time = 0.2 -advance_mode = 2 -advance_condition = &"Idle" +[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_3ity4"] +animation = &"Walk" -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_xfa3x"] -advance_mode = 2 -advance_condition = &"WalkLeft" +[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_lyqpn"] -[sub_resource type="AnimationNodeStateMachineTransition" id="AnimationNodeStateMachineTransition_m2u4j"] -advance_mode = 2 -advance_condition = &"WalkRight" +[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_5jdm6"] +graph_offset = Vector2(-329, 172) +nodes/Animation/node = SubResource("AnimationNodeAnimation_3ity4") +nodes/Animation/position = Vector2(-120, 220) +nodes/TimeScale/node = SubResource("AnimationNodeTimeScale_lyqpn") +nodes/TimeScale/position = Vector2(60, 220) +node_connections = [&"TimeScale", 0, &"Animation", &"output", 0, &"TimeScale"] -[sub_resource type="AnimationNodeStateMachine" id="AnimationNodeStateMachine_x16w7"] -states/BlendTree/node = SubResource("AnimationNodeBlendTree_hn1cf") -states/BlendTree/position = Vector2(668, 238) -states/End/position = Vector2(328, 289) -states/Start/position = Vector2(132, -10) -states/WalkLeft/node = SubResource("AnimationNodeAnimation_myrjl") -states/WalkLeft/position = Vector2(-72, 143) -states/WalkRight/node = SubResource("AnimationNodeAnimation_50xfb") -states/WalkRight/position = Vector2(304, 143) -states/Walkspace/node = SubResource("AnimationNodeBlendSpace2D_l88j3") -states/Walkspace/position = Vector2(487, 126) -states/idle/node = SubResource("AnimationNodeAnimation_dx8h8") -states/idle/position = Vector2(138, 66) -transitions = ["Start", "idle", SubResource("AnimationNodeStateMachineTransition_ogkr4"), "idle", "WalkLeft", SubResource("AnimationNodeStateMachineTransition_q2u5u"), "WalkLeft", "idle", SubResource("AnimationNodeStateMachineTransition_0oq83"), "idle", "WalkRight", SubResource("AnimationNodeStateMachineTransition_p8n5f"), "WalkRight", "idle", SubResource("AnimationNodeStateMachineTransition_yhvwn"), "WalkRight", "WalkLeft", SubResource("AnimationNodeStateMachineTransition_xfa3x"), "WalkLeft", "WalkRight", SubResource("AnimationNodeStateMachineTransition_m2u4j")] -graph_offset = Vector2(-292, -6) +[sub_resource type="AnimationNodeBlendSpace1D" id="AnimationNodeBlendSpace1D_c82tj"] +blend_point_0/node = SubResource("AnimationNodeAnimation_paj7q") +blend_point_0/pos = 0.0 +blend_point_1/node = SubResource("AnimationNodeAnimation_w0twr") +blend_point_1/pos = 500.0 +blend_point_2/node = SubResource("AnimationNodeBlendTree_p4347") +blend_point_2/pos = 700.0 +blend_point_3/node = SubResource("AnimationNodeBlendTree_5jdm6") +blend_point_3/pos = 20.0 +min_space = 0.0 +max_space = 700.0 +snap = 10.0 +value_label = "speed" +sync = true [sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_wgp38"] -graph_offset = Vector2(-182.362, 30.8934) -nodes/Blend2/node = SubResource("AnimationNodeBlend2_ydofw") -nodes/Blend2/position = Vector2(380, 180) -nodes/Locomotion/node = SubResource("AnimationNodeStateMachine_x16w7") -nodes/Locomotion/position = Vector2(100, 120) -nodes/output/position = Vector2(380, 120) -node_connections = [&"output", 0, &"Locomotion"] +nodes/WalkRun/node = SubResource("AnimationNodeBlendSpace1D_c82tj") +nodes/WalkRun/position = Vector2(180, 120) +nodes/output/position = Vector2(440, 120) +node_connections = [&"output", 0, &"WalkRun"] [sub_resource type="CanvasTexture" id="CanvasTexture_2b3h6"] -diffuse_texture = ExtResource("4_ytgpb") +diffuse_texture = ExtResource("6_3ryww") [node name="Node2D" type="CharacterBody2D"] -script = ExtResource("1_0pgv8") +script = ExtResource("1_whhfc") +CurrentSkin = ExtResource("2_w1l4c") +CurrentHat = ExtResource("3_ybl0v") [node name="CollisionShape2D" type="CollisionShape2D" parent="."] position = Vector2(0, -75) shape = SubResource("RectangleShape2D_kapu3") [node name="Camera2D" type="Camera2D" parent="."] -position = Vector2(0, -129) zoom = Vector2(0.13, 0.13) position_smoothing_enabled = true position_smoothing_speed = 2.0 drag_horizontal_enabled = true drag_vertical_enabled = true +drag_left_margin = 0.62 +drag_top_margin = 0.57 +drag_right_margin = 0.61 +drag_bottom_margin = 0.74 editor_draw_limits = true +editor_draw_drag_margin = true [node name="AnimationPlayer" type="AnimationPlayer" parent="." groups=["Animation"]] libraries = { "": SubResource("AnimationLibrary_4k813") } -autoplay = "player_WalkLeft" +autoplay = "idle" playback_default_blend_time = 0.3 [node name="AnimationTree" type="AnimationTree" parent="." groups=["Animation"]] tree_root = SubResource("AnimationNodeBlendTree_wgp38") anim_player = NodePath("../AnimationPlayer") -parameters/Blend2/blend_amount = 0 -parameters/Locomotion/conditions/Idle = true -parameters/Locomotion/conditions/WalkLeft = false -parameters/Locomotion/conditions/WalkRight = false -parameters/Locomotion/Walkspace/blend_position = Vector2(-0.00198412, 0.923077) +parameters/WalkRun/blend_position = 20.1713 +parameters/WalkRun/2/TimeScale/scale = 1.8 +parameters/WalkRun/3/TimeScale/scale = 0.3 [node name="Skeleton2D" type="Skeleton2D" parent="."] position = Vector2(17, 0) [node name="BootL" type="Sprite2D" parent="Skeleton2D"] -position = Vector2(-96.8819, -35.0051) -rotation = 0.435284 -scale = Vector2(1, 1) -texture = ExtResource("2_45h8h") +position = Vector2(-89.0025, -35.3452) +rotation = 0.380759 +texture = ExtResource("2_w1l4c") region_enabled = true region_rect = Rect2(896, 768, 128, 128) +metadata/Type = "Skin" [node name="BootR" type="Sprite2D" parent="Skeleton2D"] -position = Vector2(42.9032, -41.0059) -rotation = -0.698758 -texture = ExtResource("2_45h8h") +position = Vector2(36.4409, -41.4027) +rotation = -0.631213 +texture = ExtResource("2_w1l4c") region_enabled = true region_rect = Rect2(896, 768, 128, 128) +metadata/Type = "Skin" [node name="Body" type="Sprite2D" parent="Skeleton2D"] -position = Vector2(59, -231) -texture = ExtResource("2_45h8h") +position = Vector2(51, -242.428) +texture = ExtResource("2_w1l4c") offset = Vector2(-15, 0) region_enabled = true region_rect = Rect2(0, 640, 384, 384) +metadata/Type = "Skin" [node name="HandL" type="Sprite2D" parent="Skeleton2D/Body"] position = Vector2(-3, 54) -texture = ExtResource("2_45h8h") +texture = ExtResource("2_w1l4c") region_enabled = true region_rect = Rect2(768, 768, 128, 128) +metadata/Type = "Skin" [node name="HandR" type="Sprite2D" parent="Skeleton2D/Body"] show_behind_parent = true position = Vector2(-160, 29) -texture = ExtResource("2_45h8h") +texture = ExtResource("2_w1l4c") region_enabled = true region_rect = Rect2(768, 768, 128, 128) +metadata/Type = "Skin" [node name="Tail" type="Sprite2D" parent="Skeleton2D/Body"] show_behind_parent = true -position = Vector2(36, 101) -rotation = -0.132128 -texture = ExtResource("2_45h8h") +position = Vector2(44, 112.428) +rotation = 0.153589 +texture = ExtResource("2_w1l4c") offset = Vector2(70, 0) region_enabled = true region_rect = Rect2(768, 640, 256, 128) +metadata/Type = "Skin" [node name="Head" type="Sprite2D" parent="Skeleton2D"] -position = Vector2(-32, -404) -rotation = 0.0756305 -scale = Vector2(1, 1) -texture = ExtResource("2_45h8h") +position = Vector2(-40, -415.428) +rotation = 0.0646754 +texture = ExtResource("2_w1l4c") offset = Vector2(0, -168) region_enabled = true region_rect = Rect2(0, 0, 512, 640) +metadata/Type = "Skin" [node name="Hat" type="Sprite2D" parent="Skeleton2D/Head"] position = Vector2(65, -103) scale = Vector2(0.6, 0.6) -texture = ExtResource("3_qyf3b") +texture = ExtResource("3_ybl0v") region_enabled = true region_rect = Rect2(0, 0, 1152, 1136) +metadata/Type = "Hat" [node name="root" type="Bone2D" parent="Skeleton2D"] position = Vector2(-17, 0) diff --git a/core/sceneInstance.gd b/core/sceneInstance.gd new file mode 100644 index 0000000..c4a16af --- /dev/null +++ b/core/sceneInstance.gd @@ -0,0 +1,33 @@ +extends Node2D + +@export var InitialPlayer :PackedScene +@export var InitialMap :PackedScene + +@onready var current_scene = $CurrentScene +#@onready var scene_transition = $ScreenTransition/AnimationPlayer +var player + +func transition_to_scene(new_scene: PackedScene, spawn_location = Vector2(0,0), spawn_direction = 1): + #screen_transition.play('FadeToBlack') + if(current_scene.get_child(0)): + current_scene.get_child(0).queue_free() + current_scene.add_child(new_scene.instantiate()) + + #region Spawn Player + if (player): + player.teleport(spawn_location, spawn_direction) + else: + player = $CurrentScene.find_child("player",true) + if (player): + player.teleport(spawn_location, spawn_direction) + else: + if (InitialPlayer): + player = InitialPlayer.instantiate() + player.set_name("player") + add_child(player) + else: + printerr("No Initial player found") + #endregion + +func _on_ready(): + transition_to_scene(InitialMap,Vector2(0,0),1) diff --git a/extracted/4010-A Tiny Sticker Tale review pic 1.jpg b/extracted/4010-A Tiny Sticker Tale review pic 1.jpg new file mode 100644 index 0000000..78a2d8b Binary files /dev/null and b/extracted/4010-A Tiny Sticker Tale review pic 1.jpg differ diff --git a/extracted/4010-A Tiny Sticker Tale review pic 1.jpg.import b/extracted/4010-A Tiny Sticker Tale review pic 1.jpg.import new file mode 100644 index 0000000..0a84ec7 --- /dev/null +++ b/extracted/4010-A Tiny Sticker Tale review pic 1.jpg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5bd2ta3esnib" +path="res://.godot/imported/4010-A Tiny Sticker Tale review pic 1.jpg-ccd7b9a1b501ca420459a5659cc7c780.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/4010-A Tiny Sticker Tale review pic 1.jpg" +dest_files=["res://.godot/imported/4010-A Tiny Sticker Tale review pic 1.jpg-ccd7b9a1b501ca420459a5659cc7c780.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_0 #64714.png b/extracted/Sprite/Alpaca_outline_0 #64714.png new file mode 100644 index 0000000..9ef5239 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_0 #64714.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ffa44d7fb86aac3d3cac1a9b9c7f830edbee4f5e0e307d08d379d0804b7e0f +size 36218 diff --git a/extracted/Sprite/Alpaca_outline_0 #64714.png.import b/extracted/Sprite/Alpaca_outline_0 #64714.png.import new file mode 100644 index 0000000..af24a10 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_0 #64714.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhmijl7pgpxhi" +path="res://.godot/imported/Alpaca_outline_0 #64714.png-1a5d3b11cac65f167c63bff159012dc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_0 #64714.png" +dest_files=["res://.godot/imported/Alpaca_outline_0 #64714.png-1a5d3b11cac65f167c63bff159012dc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_0.png b/extracted/Sprite/Alpaca_outline_0.png new file mode 100644 index 0000000..d7923c0 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aadda247fe61d0f35dd81611859ce39caa99f3986ef7c92dc73d34987865326 +size 46361 diff --git a/extracted/Sprite/Alpaca_outline_0.png.import b/extracted/Sprite/Alpaca_outline_0.png.import new file mode 100644 index 0000000..c82e146 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyp7xdm4oo4ms" +path="res://.godot/imported/Alpaca_outline_0.png-bc06b82ef56f5ce44dfd42dac9b60cda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_0.png" +dest_files=["res://.godot/imported/Alpaca_outline_0.png-bc06b82ef56f5ce44dfd42dac9b60cda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_1 #63785.png b/extracted/Sprite/Alpaca_outline_1 #63785.png new file mode 100644 index 0000000..a4a8c42 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_1 #63785.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31867026d5b53ca98d5d0b7411eae948790b90456fd2da4027c3d94cef221bc +size 27079 diff --git a/extracted/Sprite/Alpaca_outline_1 #63785.png.import b/extracted/Sprite/Alpaca_outline_1 #63785.png.import new file mode 100644 index 0000000..a88a5a9 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_1 #63785.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ydbfnwsc2t4" +path="res://.godot/imported/Alpaca_outline_1 #63785.png-abed132172dfc05a8376bb5868cc9dae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_1 #63785.png" +dest_files=["res://.godot/imported/Alpaca_outline_1 #63785.png-abed132172dfc05a8376bb5868cc9dae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_1.png b/extracted/Sprite/Alpaca_outline_1.png new file mode 100644 index 0000000..7bb3e96 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81e927a2fac71273425fd72683dc1a8516da82f8c21683e52d0192d011a1efe +size 21994 diff --git a/extracted/Sprite/Alpaca_outline_1.png.import b/extracted/Sprite/Alpaca_outline_1.png.import new file mode 100644 index 0000000..4df61ea --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bff6bfq8kq2kq" +path="res://.godot/imported/Alpaca_outline_1.png-841c4db7d3e6fb989749a214d7c09081.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_1.png" +dest_files=["res://.godot/imported/Alpaca_outline_1.png-841c4db7d3e6fb989749a214d7c09081.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_2 #63737.png b/extracted/Sprite/Alpaca_outline_2 #63737.png new file mode 100644 index 0000000..f9daabd --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_2 #63737.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81e0dc38a4362b1b12dd89c9d2d1ba9fae470469c8eb6532de4ea3ee8cb7979 +size 11492 diff --git a/extracted/Sprite/Alpaca_outline_2 #63737.png.import b/extracted/Sprite/Alpaca_outline_2 #63737.png.import new file mode 100644 index 0000000..83345e0 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_2 #63737.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdu8nw6p3n1ua" +path="res://.godot/imported/Alpaca_outline_2 #63737.png-11ae274c7578f76357c869c690e6525a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_2 #63737.png" +dest_files=["res://.godot/imported/Alpaca_outline_2 #63737.png-11ae274c7578f76357c869c690e6525a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_2.png b/extracted/Sprite/Alpaca_outline_2.png new file mode 100644 index 0000000..590819c --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204ec21deb4735a8a3c7529e2d29219616557e3fe2f574db3b0108c9b6380e9b +size 8040 diff --git a/extracted/Sprite/Alpaca_outline_2.png.import b/extracted/Sprite/Alpaca_outline_2.png.import new file mode 100644 index 0000000..cbf6c0f --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp0ergomaaeqs" +path="res://.godot/imported/Alpaca_outline_2.png-1609ee20ffead6d4313b4e27c7c6a230.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_2.png" +dest_files=["res://.godot/imported/Alpaca_outline_2.png-1609ee20ffead6d4313b4e27c7c6a230.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_3 #64712.png b/extracted/Sprite/Alpaca_outline_3 #64712.png new file mode 100644 index 0000000..dc5207c --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_3 #64712.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7ec56c45c81202d5cc4b933ba120e8f224cd2cc7712eef5db477bfb995c449 +size 4201 diff --git a/extracted/Sprite/Alpaca_outline_3 #64712.png.import b/extracted/Sprite/Alpaca_outline_3 #64712.png.import new file mode 100644 index 0000000..50dc57f --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_3 #64712.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dulq2ce6d7p1m" +path="res://.godot/imported/Alpaca_outline_3 #64712.png-d80a2237bc8549066cfea10e1944719b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_3 #64712.png" +dest_files=["res://.godot/imported/Alpaca_outline_3 #64712.png-d80a2237bc8549066cfea10e1944719b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_3.png b/extracted/Sprite/Alpaca_outline_3.png new file mode 100644 index 0000000..d347d87 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08e0d7d809f38e4f6a5b98b07c3f82446907a9bcf3dd692a6a1f6866528ab15 +size 6665 diff --git a/extracted/Sprite/Alpaca_outline_3.png.import b/extracted/Sprite/Alpaca_outline_3.png.import new file mode 100644 index 0000000..e182ad1 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b63woksmhtr2k" +path="res://.godot/imported/Alpaca_outline_3.png-3eb417f7da5e9ce009eb42ebd69eda3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_3.png" +dest_files=["res://.godot/imported/Alpaca_outline_3.png-3eb417f7da5e9ce009eb42ebd69eda3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_4 #64615.png b/extracted/Sprite/Alpaca_outline_4 #64615.png new file mode 100644 index 0000000..42966c5 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_4 #64615.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e47a29b7d61116623f3889252295d358718dfa93d3714fd75e49f034109e9d +size 35208 diff --git a/extracted/Sprite/Alpaca_outline_4 #64615.png.import b/extracted/Sprite/Alpaca_outline_4 #64615.png.import new file mode 100644 index 0000000..20dc526 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_4 #64615.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccievc6eloqc3" +path="res://.godot/imported/Alpaca_outline_4 #64615.png-b84d5b628fe817793829c0df174e3c46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_4 #64615.png" +dest_files=["res://.godot/imported/Alpaca_outline_4 #64615.png-b84d5b628fe817793829c0df174e3c46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_4.png b/extracted/Sprite/Alpaca_outline_4.png new file mode 100644 index 0000000..dfbd5a8 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29af231ff82c88e30758e3b213a30fe19fb9db186bb41abee7b805dd39a33fab +size 45564 diff --git a/extracted/Sprite/Alpaca_outline_4.png.import b/extracted/Sprite/Alpaca_outline_4.png.import new file mode 100644 index 0000000..1efbce1 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db1epi3yj1hpa" +path="res://.godot/imported/Alpaca_outline_4.png-688e5bac021e2f791954b4d6944ba0f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_4.png" +dest_files=["res://.godot/imported/Alpaca_outline_4.png-688e5bac021e2f791954b4d6944ba0f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_5 #63572.png b/extracted/Sprite/Alpaca_outline_5 #63572.png new file mode 100644 index 0000000..e7ea65f --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_5 #63572.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7644a313e9da657483e54faa6707141e6cd1dbf87aca84be3af326c0d33e2d27 +size 6237 diff --git a/extracted/Sprite/Alpaca_outline_5 #63572.png.import b/extracted/Sprite/Alpaca_outline_5 #63572.png.import new file mode 100644 index 0000000..3bef723 --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_5 #63572.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bejhy8g82afly" +path="res://.godot/imported/Alpaca_outline_5 #63572.png-c1f34eb2a7b829509742ca179b2bb1a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_5 #63572.png" +dest_files=["res://.godot/imported/Alpaca_outline_5 #63572.png-c1f34eb2a7b829509742ca179b2bb1a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Alpaca_outline_5.png b/extracted/Sprite/Alpaca_outline_5.png new file mode 100644 index 0000000..86da6fb --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75ce136aa980ea8f80ed676e8f859ea64eb300125fad862ceb681fec9f0a497 +size 3953 diff --git a/extracted/Sprite/Alpaca_outline_5.png.import b/extracted/Sprite/Alpaca_outline_5.png.import new file mode 100644 index 0000000..fb916ac --- /dev/null +++ b/extracted/Sprite/Alpaca_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ycv6ve3klf7" +path="res://.godot/imported/Alpaca_outline_5.png-e9a22dcb9d576f1659980f427e417fa0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Alpaca_outline_5.png" +dest_files=["res://.godot/imported/Alpaca_outline_5.png-e9a22dcb9d576f1659980f427e417fa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Archer Hat Sticker.png b/extracted/Sprite/Archer Hat Sticker.png new file mode 100644 index 0000000..a955e1b --- /dev/null +++ b/extracted/Sprite/Archer Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23bb8e2de7ca6f4788b3ef45e4f7540d8be20f6f40b8a8ecb4a59a011461495b +size 38280 diff --git a/extracted/Sprite/Archer Hat Sticker.png.import b/extracted/Sprite/Archer Hat Sticker.png.import new file mode 100644 index 0000000..a0c867b --- /dev/null +++ b/extracted/Sprite/Archer Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d15lh31byx0ct" +path="res://.godot/imported/Archer Hat Sticker.png-e129fbc57467af61b95e2bb049105de9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Archer Hat Sticker.png" +dest_files=["res://.godot/imported/Archer Hat Sticker.png-e129fbc57467af61b95e2bb049105de9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Archer cloth Sticker.png b/extracted/Sprite/Archer cloth Sticker.png new file mode 100644 index 0000000..aaa8ee6 --- /dev/null +++ b/extracted/Sprite/Archer cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa9303de9a2625fa3b0255c7971e5b2cf20f2d4873f27c6976fa55ad3a9c97c +size 35454 diff --git a/extracted/Sprite/Archer cloth Sticker.png.import b/extracted/Sprite/Archer cloth Sticker.png.import new file mode 100644 index 0000000..e80d12c --- /dev/null +++ b/extracted/Sprite/Archer cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb1ab6a5ar7wt" +path="res://.godot/imported/Archer cloth Sticker.png-35d3d3643fcacf7741b29e6556532031.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Archer cloth Sticker.png" +dest_files=["res://.godot/imported/Archer cloth Sticker.png-35d3d3643fcacf7741b29e6556532031.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/BH Evil cloth Sticker.png b/extracted/Sprite/BH Evil cloth Sticker.png new file mode 100644 index 0000000..dad7dd6 --- /dev/null +++ b/extracted/Sprite/BH Evil cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d907a8a71f82d421922fad25e8d4862799c6ddc10d81002894f74957bb80b014 +size 40964 diff --git a/extracted/Sprite/BH Evil cloth Sticker.png.import b/extracted/Sprite/BH Evil cloth Sticker.png.import new file mode 100644 index 0000000..2f75c69 --- /dev/null +++ b/extracted/Sprite/BH Evil cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dayj86mep42bd" +path="res://.godot/imported/BH Evil cloth Sticker.png-69bde75ecef41250d0a2caa8778d91da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/BH Evil cloth Sticker.png" +dest_files=["res://.godot/imported/BH Evil cloth Sticker.png-69bde75ecef41250d0a2caa8778d91da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/BH Good cloth Sticker.png b/extracted/Sprite/BH Good cloth Sticker.png new file mode 100644 index 0000000..b2e9f97 --- /dev/null +++ b/extracted/Sprite/BH Good cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f31b52aaf6c101aa412cd4def17c4ba2598c99f14af14d6e1c01a17aca08c39 +size 43322 diff --git a/extracted/Sprite/BH Good cloth Sticker.png.import b/extracted/Sprite/BH Good cloth Sticker.png.import new file mode 100644 index 0000000..8c34efa --- /dev/null +++ b/extracted/Sprite/BH Good cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8ql14bkwpjle" +path="res://.godot/imported/BH Good cloth Sticker.png-3be1c6d73cf2e1328fc576b652250bff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/BH Good cloth Sticker.png" +dest_files=["res://.godot/imported/BH Good cloth Sticker.png-3be1c6d73cf2e1328fc576b652250bff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/BH Neutral cloth Sticker.png b/extracted/Sprite/BH Neutral cloth Sticker.png new file mode 100644 index 0000000..d15b21e --- /dev/null +++ b/extracted/Sprite/BH Neutral cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68f8edb28261bba2973560ecca434c3a94511c9ce3558f1d93502368447e67b +size 41722 diff --git a/extracted/Sprite/BH Neutral cloth Sticker.png.import b/extracted/Sprite/BH Neutral cloth Sticker.png.import new file mode 100644 index 0000000..c468284 --- /dev/null +++ b/extracted/Sprite/BH Neutral cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg80ug8ui5e05" +path="res://.godot/imported/BH Neutral cloth Sticker.png-60f8cb124ddeda6435eca1fb89e5271b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/BH Neutral cloth Sticker.png" +dest_files=["res://.godot/imported/BH Neutral cloth Sticker.png-60f8cb124ddeda6435eca1fb89e5271b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Basic Hat Sticker.png b/extracted/Sprite/Basic Hat Sticker.png new file mode 100644 index 0000000..010060b --- /dev/null +++ b/extracted/Sprite/Basic Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30840687638c4b048e987440628381caed8f7cd27ce91b80cad473c0de0aba60 +size 45331 diff --git a/extracted/Sprite/Basic Hat Sticker.png.import b/extracted/Sprite/Basic Hat Sticker.png.import new file mode 100644 index 0000000..e20b0e4 --- /dev/null +++ b/extracted/Sprite/Basic Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqrlj6oamndqv" +path="res://.godot/imported/Basic Hat Sticker.png-4c7e5d65ce37fe6a329666d94e12a651.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Basic Hat Sticker.png" +dest_files=["res://.godot/imported/Basic Hat Sticker.png-4c7e5d65ce37fe6a329666d94e12a651.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Bow_Trophy_outline.png b/extracted/Sprite/Bow_Trophy_outline.png new file mode 100644 index 0000000..6a03604 --- /dev/null +++ b/extracted/Sprite/Bow_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99036bc79b9e5f17aaea2966842c78dec2fe57fcff0462ebff9ea7ced75c03f +size 42018 diff --git a/extracted/Sprite/Bow_Trophy_outline.png.import b/extracted/Sprite/Bow_Trophy_outline.png.import new file mode 100644 index 0000000..e3bf470 --- /dev/null +++ b/extracted/Sprite/Bow_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oa8lnamy5my3" +path="res://.godot/imported/Bow_Trophy_outline.png-a4b172fd68124ea427792a2e001ec492.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Bow_Trophy_outline.png" +dest_files=["res://.godot/imported/Bow_Trophy_outline.png-a4b172fd68124ea427792a2e001ec492.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Buzo Hat Sticker.png b/extracted/Sprite/Buzo Hat Sticker.png new file mode 100644 index 0000000..76a91f8 --- /dev/null +++ b/extracted/Sprite/Buzo Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f53fc60eb022a7ae8f796a6579c1f82b6e744e8b2f31b5fcd6eb5b2887dac87 +size 75799 diff --git a/extracted/Sprite/Buzo Hat Sticker.png.import b/extracted/Sprite/Buzo Hat Sticker.png.import new file mode 100644 index 0000000..13f1d2b --- /dev/null +++ b/extracted/Sprite/Buzo Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brqn3i24wnhno" +path="res://.godot/imported/Buzo Hat Sticker.png-5c1707c3785fec5cb65520307e0ce467.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Buzo Hat Sticker.png" +dest_files=["res://.godot/imported/Buzo Hat Sticker.png-5c1707c3785fec5cb65520307e0ce467.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Buzo cloth Sticker.png b/extracted/Sprite/Buzo cloth Sticker.png new file mode 100644 index 0000000..1962d5a --- /dev/null +++ b/extracted/Sprite/Buzo cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24170b9d8a23127dcf9e70568f3deba6badc0a84da241c47307afd51b196b883 +size 39358 diff --git a/extracted/Sprite/Buzo cloth Sticker.png.import b/extracted/Sprite/Buzo cloth Sticker.png.import new file mode 100644 index 0000000..a61ac3e --- /dev/null +++ b/extracted/Sprite/Buzo cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmtxggapoqmyu" +path="res://.godot/imported/Buzo cloth Sticker.png-fa00e9ce21dfc98b685148b8982e31cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Buzo cloth Sticker.png" +dest_files=["res://.godot/imported/Buzo cloth Sticker.png-fa00e9ce21dfc98b685148b8982e31cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Casual Cloth Sticker.png b/extracted/Sprite/Casual Cloth Sticker.png new file mode 100644 index 0000000..ac05731 --- /dev/null +++ b/extracted/Sprite/Casual Cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d84cfbd06f739f3581955586a494196fdfd24fca96ff8998322e720fd2f9414 +size 45667 diff --git a/extracted/Sprite/Casual Cloth Sticker.png.import b/extracted/Sprite/Casual Cloth Sticker.png.import new file mode 100644 index 0000000..910182f --- /dev/null +++ b/extracted/Sprite/Casual Cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceyv634hwl1yw" +path="res://.godot/imported/Casual Cloth Sticker.png-c728b0f53658880c531839f65dd02887.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Casual Cloth Sticker.png" +dest_files=["res://.godot/imported/Casual Cloth Sticker.png-c728b0f53658880c531839f65dd02887.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_0 #64419.png b/extracted/Sprite/Eagle_outline_0 #64419.png new file mode 100644 index 0000000..eaf9fcf --- /dev/null +++ b/extracted/Sprite/Eagle_outline_0 #64419.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525803f6c66650a2514f41b5be28b759bd792a1852ce6ea90c1621d33f05bb38 +size 39181 diff --git a/extracted/Sprite/Eagle_outline_0 #64419.png.import b/extracted/Sprite/Eagle_outline_0 #64419.png.import new file mode 100644 index 0000000..f4b0c2b --- /dev/null +++ b/extracted/Sprite/Eagle_outline_0 #64419.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq5hl4puvuw2" +path="res://.godot/imported/Eagle_outline_0 #64419.png-055df8f22e1f66a66e7d61dee69f9afa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_0 #64419.png" +dest_files=["res://.godot/imported/Eagle_outline_0 #64419.png-055df8f22e1f66a66e7d61dee69f9afa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_0.png b/extracted/Sprite/Eagle_outline_0.png new file mode 100644 index 0000000..6708041 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ebaa20cf9983e603bb698e5b3f2024dc6d0c731a0ae62b0e8c69e3b60ec83a +size 32919 diff --git a/extracted/Sprite/Eagle_outline_0.png.import b/extracted/Sprite/Eagle_outline_0.png.import new file mode 100644 index 0000000..ffaf163 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1r5tepf1w1e8" +path="res://.godot/imported/Eagle_outline_0.png-92b1c80b0392fd4cc9411c381e7792d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_0.png" +dest_files=["res://.godot/imported/Eagle_outline_0.png-92b1c80b0392fd4cc9411c381e7792d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_1 #63793.png b/extracted/Sprite/Eagle_outline_1 #63793.png new file mode 100644 index 0000000..754811b --- /dev/null +++ b/extracted/Sprite/Eagle_outline_1 #63793.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e01d77096709fe44506163f4ad6649487db592053a96c8b314d919881a2aa3e +size 5613 diff --git a/extracted/Sprite/Eagle_outline_1 #63793.png.import b/extracted/Sprite/Eagle_outline_1 #63793.png.import new file mode 100644 index 0000000..80e53ed --- /dev/null +++ b/extracted/Sprite/Eagle_outline_1 #63793.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cie2nadf2o10d" +path="res://.godot/imported/Eagle_outline_1 #63793.png-b720778e612b9de7c4ba188daade9d3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_1 #63793.png" +dest_files=["res://.godot/imported/Eagle_outline_1 #63793.png-b720778e612b9de7c4ba188daade9d3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_1.png b/extracted/Sprite/Eagle_outline_1.png new file mode 100644 index 0000000..b2ffb32 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055064446871fa1b0606c0eb8a5d2b2b628d0fd793dbbfbde0aaf20e50b0eb14 +size 4258 diff --git a/extracted/Sprite/Eagle_outline_1.png.import b/extracted/Sprite/Eagle_outline_1.png.import new file mode 100644 index 0000000..9d5922a --- /dev/null +++ b/extracted/Sprite/Eagle_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bubc77w3q8xs1" +path="res://.godot/imported/Eagle_outline_1.png-3fa33c5c70aedd4abe209296608edab2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_1.png" +dest_files=["res://.godot/imported/Eagle_outline_1.png-3fa33c5c70aedd4abe209296608edab2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_2 #63625.png b/extracted/Sprite/Eagle_outline_2 #63625.png new file mode 100644 index 0000000..4c09a37 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_2 #63625.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8be1ac65dbfdb3b00f266592916a4d8d6bdae583487d4b5c1c860c502d2dbb +size 31892 diff --git a/extracted/Sprite/Eagle_outline_2 #63625.png.import b/extracted/Sprite/Eagle_outline_2 #63625.png.import new file mode 100644 index 0000000..4f1c786 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_2 #63625.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hcun2r114sj7" +path="res://.godot/imported/Eagle_outline_2 #63625.png-c6b23897cfc07fe19f555402cb8fa1c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_2 #63625.png" +dest_files=["res://.godot/imported/Eagle_outline_2 #63625.png-c6b23897cfc07fe19f555402cb8fa1c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_2.png b/extracted/Sprite/Eagle_outline_2.png new file mode 100644 index 0000000..15d6faa --- /dev/null +++ b/extracted/Sprite/Eagle_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bb1e0b622fd20b70fd1a3b628ca24358e5fb07a0c5a7e158260deb9b1fa524 +size 26785 diff --git a/extracted/Sprite/Eagle_outline_2.png.import b/extracted/Sprite/Eagle_outline_2.png.import new file mode 100644 index 0000000..e35f062 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsdof71qpkvct" +path="res://.godot/imported/Eagle_outline_2.png-d368a880ac015ff949e66e0041ac6fcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_2.png" +dest_files=["res://.godot/imported/Eagle_outline_2.png-d368a880ac015ff949e66e0041ac6fcb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_4 #64345.png b/extracted/Sprite/Eagle_outline_4 #64345.png new file mode 100644 index 0000000..754acc2 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_4 #64345.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1a8f75da33de1e5b3dd3a7505459d84851bfdd90db8382409b67e8e820a74c +size 23389 diff --git a/extracted/Sprite/Eagle_outline_4 #64345.png.import b/extracted/Sprite/Eagle_outline_4 #64345.png.import new file mode 100644 index 0000000..38d1c4b --- /dev/null +++ b/extracted/Sprite/Eagle_outline_4 #64345.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2q6nxlah725u" +path="res://.godot/imported/Eagle_outline_4 #64345.png-9b25e7ccab988da228d8a9bcc71a7c6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_4 #64345.png" +dest_files=["res://.godot/imported/Eagle_outline_4 #64345.png-9b25e7ccab988da228d8a9bcc71a7c6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_4.png b/extracted/Sprite/Eagle_outline_4.png new file mode 100644 index 0000000..4909ecd --- /dev/null +++ b/extracted/Sprite/Eagle_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f44180b7b25710208280d7b085f5614c2e3b6c22fb60f097085dda37c14bdb +size 18141 diff --git a/extracted/Sprite/Eagle_outline_4.png.import b/extracted/Sprite/Eagle_outline_4.png.import new file mode 100644 index 0000000..0e2f666 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caoiiprpp1ouc" +path="res://.godot/imported/Eagle_outline_4.png-28e8f3a65c29404cc9ce0a6a96e207ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_4.png" +dest_files=["res://.godot/imported/Eagle_outline_4.png-28e8f3a65c29404cc9ce0a6a96e207ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_7.png b/extracted/Sprite/Eagle_outline_7.png new file mode 100644 index 0000000..b618f5b --- /dev/null +++ b/extracted/Sprite/Eagle_outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e795fedb5a92fae6c2faff0a4cbd94bad79de4a7b840a3f1bf9b3d044e7e69b4 +size 5076 diff --git a/extracted/Sprite/Eagle_outline_7.png.import b/extracted/Sprite/Eagle_outline_7.png.import new file mode 100644 index 0000000..1fde7ca --- /dev/null +++ b/extracted/Sprite/Eagle_outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6x5fu2bp85xl" +path="res://.godot/imported/Eagle_outline_7.png-55ea84967c5fed87df0d5bcf58ccb151.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_7.png" +dest_files=["res://.godot/imported/Eagle_outline_7.png-55ea84967c5fed87df0d5bcf58ccb151.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_8 #63751.png b/extracted/Sprite/Eagle_outline_8 #63751.png new file mode 100644 index 0000000..175dad6 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_8 #63751.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2686265ba5a5914aa75d35371f3a8e30498c70e147406f1d216d90daeba5838d +size 7528 diff --git a/extracted/Sprite/Eagle_outline_8 #63751.png.import b/extracted/Sprite/Eagle_outline_8 #63751.png.import new file mode 100644 index 0000000..101d2e5 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_8 #63751.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c81tptumw2u2a" +path="res://.godot/imported/Eagle_outline_8 #63751.png-5d171e306dd8d2d025b80b94bd700e8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_8 #63751.png" +dest_files=["res://.godot/imported/Eagle_outline_8 #63751.png-5d171e306dd8d2d025b80b94bd700e8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_8.png b/extracted/Sprite/Eagle_outline_8.png new file mode 100644 index 0000000..8784165 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d1453c3b9ab6095fcf455ee4bc7a048c3845bfea58500bf145eb4e0bf8d5c1 +size 5727 diff --git a/extracted/Sprite/Eagle_outline_8.png.import b/extracted/Sprite/Eagle_outline_8.png.import new file mode 100644 index 0000000..3117ba6 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqriho2d6mhbw" +path="res://.godot/imported/Eagle_outline_8.png-1338074ea05f124ce705a468cd9e9b83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_8.png" +dest_files=["res://.godot/imported/Eagle_outline_8.png-1338074ea05f124ce705a468cd9e9b83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_9 #64436.png b/extracted/Sprite/Eagle_outline_9 #64436.png new file mode 100644 index 0000000..616872b --- /dev/null +++ b/extracted/Sprite/Eagle_outline_9 #64436.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9d3500de5be7b2b6e87c12f20a8a07eb73149409f22066b459492a922c778d +size 15897 diff --git a/extracted/Sprite/Eagle_outline_9 #64436.png.import b/extracted/Sprite/Eagle_outline_9 #64436.png.import new file mode 100644 index 0000000..faa0b85 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_9 #64436.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjlmlo6jk3ejp" +path="res://.godot/imported/Eagle_outline_9 #64436.png-1d5cee90b2338326a84bb9e30375691e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_9 #64436.png" +dest_files=["res://.godot/imported/Eagle_outline_9 #64436.png-1d5cee90b2338326a84bb9e30375691e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Eagle_outline_9.png b/extracted/Sprite/Eagle_outline_9.png new file mode 100644 index 0000000..a2f71a4 --- /dev/null +++ b/extracted/Sprite/Eagle_outline_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2dbb928875d27047e6cea9f0025cee83259a5d88573032d5b12ac0622f7a8f4 +size 12667 diff --git a/extracted/Sprite/Eagle_outline_9.png.import b/extracted/Sprite/Eagle_outline_9.png.import new file mode 100644 index 0000000..dc7ef4c --- /dev/null +++ b/extracted/Sprite/Eagle_outline_9.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd7o2nagxb16f" +path="res://.godot/imported/Eagle_outline_9.png-96db489fe0d8b544b8176114abab24f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Eagle_outline_9.png" +dest_files=["res://.godot/imported/Eagle_outline_9.png-96db489fe0d8b544b8176114abab24f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Elf Hat Sticker.png b/extracted/Sprite/Elf Hat Sticker.png new file mode 100644 index 0000000..1ac5c5d --- /dev/null +++ b/extracted/Sprite/Elf Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea03ce1804da5e3f3b57cb071abf4ea5e3501988fce439ec8dfe319d1a61873 +size 42494 diff --git a/extracted/Sprite/Elf Hat Sticker.png.import b/extracted/Sprite/Elf Hat Sticker.png.import new file mode 100644 index 0000000..20f3042 --- /dev/null +++ b/extracted/Sprite/Elf Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs1xhf36k0jpx" +path="res://.godot/imported/Elf Hat Sticker.png-dfe5cc58d495ffce7706242551dc15f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Elf Hat Sticker.png" +dest_files=["res://.godot/imported/Elf Hat Sticker.png-dfe5cc58d495ffce7706242551dc15f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Elf cloth Sticker.png b/extracted/Sprite/Elf cloth Sticker.png new file mode 100644 index 0000000..d9f57cd --- /dev/null +++ b/extracted/Sprite/Elf cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b60686646890e64badf621d6f9ef0bf4fb52a817fc8c98de972ec14b37d387 +size 41369 diff --git a/extracted/Sprite/Elf cloth Sticker.png.import b/extracted/Sprite/Elf cloth Sticker.png.import new file mode 100644 index 0000000..5c28ba6 --- /dev/null +++ b/extracted/Sprite/Elf cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwsv7bsbsll35" +path="res://.godot/imported/Elf cloth Sticker.png-671f9ed4747de70e29a2e81e4989c5f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Elf cloth Sticker.png" +dest_files=["res://.godot/imported/Elf cloth Sticker.png-671f9ed4747de70e29a2e81e4989c5f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/FishingRod_Trophy_outline.png b/extracted/Sprite/FishingRod_Trophy_outline.png new file mode 100644 index 0000000..e8e1051 --- /dev/null +++ b/extracted/Sprite/FishingRod_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b98e78102828111523245a4ffe84aa4bf9315560531653f9fbdf2359458cce2 +size 48221 diff --git a/extracted/Sprite/FishingRod_Trophy_outline.png.import b/extracted/Sprite/FishingRod_Trophy_outline.png.import new file mode 100644 index 0000000..e0661f9 --- /dev/null +++ b/extracted/Sprite/FishingRod_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dihe5tck67gjq" +path="res://.godot/imported/FishingRod_Trophy_outline.png-081cb43e4e3ddb66f1884af8cfa3ab05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/FishingRod_Trophy_outline.png" +dest_files=["res://.godot/imported/FishingRod_Trophy_outline.png-081cb43e4e3ddb66f1884af8cfa3ab05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Floors_11_SPRT_0.png b/extracted/Sprite/Floors_11_SPRT_0.png new file mode 100644 index 0000000..04daa4f --- /dev/null +++ b/extracted/Sprite/Floors_11_SPRT_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2502466dee1a1a191e9af5ac183d3a6ea323c0fbfcb4f6802d642350073599f +size 139710 diff --git a/extracted/Sprite/Floors_11_SPRT_0.png.import b/extracted/Sprite/Floors_11_SPRT_0.png.import new file mode 100644 index 0000000..5243c9d --- /dev/null +++ b/extracted/Sprite/Floors_11_SPRT_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db1k2fu0p2ek8" +path="res://.godot/imported/Floors_11_SPRT_0.png-05faf4767b0cd0ea96387f3b721deadf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Floors_11_SPRT_0.png" +dest_files=["res://.godot/imported/Floors_11_SPRT_0.png-05faf4767b0cd0ea96387f3b721deadf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Floors_MountBack_SPRT.png b/extracted/Sprite/Floors_MountBack_SPRT.png new file mode 100644 index 0000000..b98671e --- /dev/null +++ b/extracted/Sprite/Floors_MountBack_SPRT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59d5c64475a3d311a18653939f779215fb37c0772a44736586b09ed1bfe5de0 +size 442396 diff --git a/extracted/Sprite/Floors_MountBack_SPRT.png.import b/extracted/Sprite/Floors_MountBack_SPRT.png.import new file mode 100644 index 0000000..d3aaa62 --- /dev/null +++ b/extracted/Sprite/Floors_MountBack_SPRT.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwdkjn238ybqd" +path="res://.godot/imported/Floors_MountBack_SPRT.png-ac26d5359cbe1c5daf76d79f06231d53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Floors_MountBack_SPRT.png" +dest_files=["res://.godot/imported/Floors_MountBack_SPRT.png-ac26d5359cbe1c5daf76d79f06231d53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_0 #64390.png b/extracted/Sprite/Ghost_outline_0 #64390.png new file mode 100644 index 0000000..de2a6cf --- /dev/null +++ b/extracted/Sprite/Ghost_outline_0 #64390.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d519062c0f82a65fa830efbd26b71a3e64d1c54163c99b4e21b9cbe0ce3dde +size 25431 diff --git a/extracted/Sprite/Ghost_outline_0 #64390.png.import b/extracted/Sprite/Ghost_outline_0 #64390.png.import new file mode 100644 index 0000000..5dbafaa --- /dev/null +++ b/extracted/Sprite/Ghost_outline_0 #64390.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7vnxv672qbpl" +path="res://.godot/imported/Ghost_outline_0 #64390.png-89a17031389ae311179b8cea02c6beac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_0 #64390.png" +dest_files=["res://.godot/imported/Ghost_outline_0 #64390.png-89a17031389ae311179b8cea02c6beac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_0.png b/extracted/Sprite/Ghost_outline_0.png new file mode 100644 index 0000000..eaad7d0 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145581198f0a5d72e15663ba83ee7b7f8227391a8789144c9609d43403196563 +size 23854 diff --git a/extracted/Sprite/Ghost_outline_0.png.import b/extracted/Sprite/Ghost_outline_0.png.import new file mode 100644 index 0000000..8ed3e21 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d14fvinclsnq7" +path="res://.godot/imported/Ghost_outline_0.png-db8e0fa39fababa2525c666ba1e3a372.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_0.png" +dest_files=["res://.godot/imported/Ghost_outline_0.png-db8e0fa39fababa2525c666ba1e3a372.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_1 #64479.png b/extracted/Sprite/Ghost_outline_1 #64479.png new file mode 100644 index 0000000..edeb012 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_1 #64479.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4304748ad5b4d36090a46648f687b6cf6770bdaa4aa1d85679005e97b439b0 +size 48904 diff --git a/extracted/Sprite/Ghost_outline_1 #64479.png.import b/extracted/Sprite/Ghost_outline_1 #64479.png.import new file mode 100644 index 0000000..6903d22 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_1 #64479.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bph4d4ol6xpdo" +path="res://.godot/imported/Ghost_outline_1 #64479.png-520ccfdfb749fd5b440bf393f8192df2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_1 #64479.png" +dest_files=["res://.godot/imported/Ghost_outline_1 #64479.png-520ccfdfb749fd5b440bf393f8192df2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_1.png b/extracted/Sprite/Ghost_outline_1.png new file mode 100644 index 0000000..53fa2ee --- /dev/null +++ b/extracted/Sprite/Ghost_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee97feab50558d70b324778c92f5709c6b9f3b41aab96d056e58934254bacd1d +size 51725 diff --git a/extracted/Sprite/Ghost_outline_1.png.import b/extracted/Sprite/Ghost_outline_1.png.import new file mode 100644 index 0000000..88094db --- /dev/null +++ b/extracted/Sprite/Ghost_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tywbkuc0nlqi" +path="res://.godot/imported/Ghost_outline_1.png-69623f5b4c2e3b78d6bf690c41903bad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_1.png" +dest_files=["res://.godot/imported/Ghost_outline_1.png-69623f5b4c2e3b78d6bf690c41903bad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_2 #64697.png b/extracted/Sprite/Ghost_outline_2 #64697.png new file mode 100644 index 0000000..178b990 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_2 #64697.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a05f3230195208ab7daca3afc937e3b106acb479a23aaf5caeeecc1be4bfaf2 +size 5245 diff --git a/extracted/Sprite/Ghost_outline_2 #64697.png.import b/extracted/Sprite/Ghost_outline_2 #64697.png.import new file mode 100644 index 0000000..901b3ef --- /dev/null +++ b/extracted/Sprite/Ghost_outline_2 #64697.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://borig767udfdx" +path="res://.godot/imported/Ghost_outline_2 #64697.png-0d255753f5f0759b6b6129141f84bc5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_2 #64697.png" +dest_files=["res://.godot/imported/Ghost_outline_2 #64697.png-0d255753f5f0759b6b6129141f84bc5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ghost_outline_2.png b/extracted/Sprite/Ghost_outline_2.png new file mode 100644 index 0000000..02c6a04 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74a66c05bf40c1d2d8b761d222e8d884438bb9916124471e66a17e00d9fd684 +size 10422 diff --git a/extracted/Sprite/Ghost_outline_2.png.import b/extracted/Sprite/Ghost_outline_2.png.import new file mode 100644 index 0000000..25f3b18 --- /dev/null +++ b/extracted/Sprite/Ghost_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm258g7uqexly" +path="res://.godot/imported/Ghost_outline_2.png-8088bfa4f719f94cf58c3cd98b1de768.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ghost_outline_2.png" +dest_files=["res://.godot/imported/Ghost_outline_2.png-8088bfa4f719f94cf58c3cd98b1de768.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Glases Hat Sticker.png b/extracted/Sprite/Glases Hat Sticker.png new file mode 100644 index 0000000..98ec314 --- /dev/null +++ b/extracted/Sprite/Glases Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26897aae05f743890bb00559a5d36492200571f6a4b2958b4a9a203f4658368f +size 35695 diff --git a/extracted/Sprite/Glases Hat Sticker.png.import b/extracted/Sprite/Glases Hat Sticker.png.import new file mode 100644 index 0000000..975169d --- /dev/null +++ b/extracted/Sprite/Glases Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpuuwgvsaon4k" +path="res://.godot/imported/Glases Hat Sticker.png-3f2d4ed54eb5776699dcf623302f7546.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Glases Hat Sticker.png" +dest_files=["res://.godot/imported/Glases Hat Sticker.png-3f2d4ed54eb5776699dcf623302f7546.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_0 #64571.png b/extracted/Sprite/Goat_outline_0 #64571.png new file mode 100644 index 0000000..3494bff --- /dev/null +++ b/extracted/Sprite/Goat_outline_0 #64571.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09f794e51bd9f3528b1688ca29e7a5408e7319d80e7daef2ee47f54a94ae6a7 +size 41215 diff --git a/extracted/Sprite/Goat_outline_0 #64571.png.import b/extracted/Sprite/Goat_outline_0 #64571.png.import new file mode 100644 index 0000000..cb18b03 --- /dev/null +++ b/extracted/Sprite/Goat_outline_0 #64571.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfoqyrnjc1qas" +path="res://.godot/imported/Goat_outline_0 #64571.png-9669cbffe7c5ed98cb8c0445b7bb6029.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_0 #64571.png" +dest_files=["res://.godot/imported/Goat_outline_0 #64571.png-9669cbffe7c5ed98cb8c0445b7bb6029.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_0.png b/extracted/Sprite/Goat_outline_0.png new file mode 100644 index 0000000..a135d55 --- /dev/null +++ b/extracted/Sprite/Goat_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe3c7d75140fcebb2c7cd799062ad0a9e7e1cf84c711b5b5d6c338dde65e199 +size 49695 diff --git a/extracted/Sprite/Goat_outline_0.png.import b/extracted/Sprite/Goat_outline_0.png.import new file mode 100644 index 0000000..96db377 --- /dev/null +++ b/extracted/Sprite/Goat_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://inybbnrf4de2" +path="res://.godot/imported/Goat_outline_0.png-b354862ae7abe22b4a82456bd7b2808d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_0.png" +dest_files=["res://.godot/imported/Goat_outline_0.png-b354862ae7abe22b4a82456bd7b2808d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_1 #63691.png b/extracted/Sprite/Goat_outline_1 #63691.png new file mode 100644 index 0000000..a071ace --- /dev/null +++ b/extracted/Sprite/Goat_outline_1 #63691.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b845e68d797c5f3251b228de11e67513b060cd6f616170efe8b6066b28066bde +size 26942 diff --git a/extracted/Sprite/Goat_outline_1 #63691.png.import b/extracted/Sprite/Goat_outline_1 #63691.png.import new file mode 100644 index 0000000..69cc925 --- /dev/null +++ b/extracted/Sprite/Goat_outline_1 #63691.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hvsxmstibgtc" +path="res://.godot/imported/Goat_outline_1 #63691.png-457174574d2a56f3abbcaecadb9f633b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_1 #63691.png" +dest_files=["res://.godot/imported/Goat_outline_1 #63691.png-457174574d2a56f3abbcaecadb9f633b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_1.png b/extracted/Sprite/Goat_outline_1.png new file mode 100644 index 0000000..d1e0cd7 --- /dev/null +++ b/extracted/Sprite/Goat_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d0b19c944446d4ee6e35d3f589774f0128c56fb767bc7bbfaa0a170f8b0ff5 +size 21364 diff --git a/extracted/Sprite/Goat_outline_1.png.import b/extracted/Sprite/Goat_outline_1.png.import new file mode 100644 index 0000000..1c2edb4 --- /dev/null +++ b/extracted/Sprite/Goat_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfta1wslej3oi" +path="res://.godot/imported/Goat_outline_1.png-c1d6e2766fc5620df147d34b543b482f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_1.png" +dest_files=["res://.godot/imported/Goat_outline_1.png-c1d6e2766fc5620df147d34b543b482f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_2 #64431.png b/extracted/Sprite/Goat_outline_2 #64431.png new file mode 100644 index 0000000..271a225 --- /dev/null +++ b/extracted/Sprite/Goat_outline_2 #64431.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7099711c6cf9611a8fe12b958bacae19fee0f73a29bad9940b313c8a8e98340 +size 41792 diff --git a/extracted/Sprite/Goat_outline_2 #64431.png.import b/extracted/Sprite/Goat_outline_2 #64431.png.import new file mode 100644 index 0000000..dd51b11 --- /dev/null +++ b/extracted/Sprite/Goat_outline_2 #64431.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsjcx6txigpis" +path="res://.godot/imported/Goat_outline_2 #64431.png-21253a767382c88efd78ba35b8707b1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_2 #64431.png" +dest_files=["res://.godot/imported/Goat_outline_2 #64431.png-21253a767382c88efd78ba35b8707b1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_2.png b/extracted/Sprite/Goat_outline_2.png new file mode 100644 index 0000000..9565d7f --- /dev/null +++ b/extracted/Sprite/Goat_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8500714c5f4f95df39b80ea048f51a2cddb62979618dbab44025f98b7f3fc7 +size 33054 diff --git a/extracted/Sprite/Goat_outline_2.png.import b/extracted/Sprite/Goat_outline_2.png.import new file mode 100644 index 0000000..4118535 --- /dev/null +++ b/extracted/Sprite/Goat_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnkgfclpcnfo0" +path="res://.godot/imported/Goat_outline_2.png-75c548c41d75fc2df5438dbd2e0c3571.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_2.png" +dest_files=["res://.godot/imported/Goat_outline_2.png-75c548c41d75fc2df5438dbd2e0c3571.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_3 #64608.png b/extracted/Sprite/Goat_outline_3 #64608.png new file mode 100644 index 0000000..6429eef --- /dev/null +++ b/extracted/Sprite/Goat_outline_3 #64608.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635af1fac803b6e8c0cab212a4097a5e84c9b14396d5c8276e83ad0ffb94c44e +size 21796 diff --git a/extracted/Sprite/Goat_outline_3 #64608.png.import b/extracted/Sprite/Goat_outline_3 #64608.png.import new file mode 100644 index 0000000..340fd86 --- /dev/null +++ b/extracted/Sprite/Goat_outline_3 #64608.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drio8kx1foia8" +path="res://.godot/imported/Goat_outline_3 #64608.png-6909f697fb30daa846517adf9c5e23d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_3 #64608.png" +dest_files=["res://.godot/imported/Goat_outline_3 #64608.png-6909f697fb30daa846517adf9c5e23d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_3.png b/extracted/Sprite/Goat_outline_3.png new file mode 100644 index 0000000..49a1254 --- /dev/null +++ b/extracted/Sprite/Goat_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be65f2a968fc4c102912cdf539b220332d860e3b72272ac3d0d6262fe4a28eca +size 27280 diff --git a/extracted/Sprite/Goat_outline_3.png.import b/extracted/Sprite/Goat_outline_3.png.import new file mode 100644 index 0000000..842d3f8 --- /dev/null +++ b/extracted/Sprite/Goat_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drqjv3b7b85e" +path="res://.godot/imported/Goat_outline_3.png-414d81de1a74f43c58e3ef19ac21d849.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_3.png" +dest_files=["res://.godot/imported/Goat_outline_3.png-414d81de1a74f43c58e3ef19ac21d849.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_4 #64680.png b/extracted/Sprite/Goat_outline_4 #64680.png new file mode 100644 index 0000000..a53ee79 --- /dev/null +++ b/extracted/Sprite/Goat_outline_4 #64680.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7403ccfc8de39c99d18807f8345d3242c163be4ed5d4c5b785d2aef0f4525f +size 4259 diff --git a/extracted/Sprite/Goat_outline_4 #64680.png.import b/extracted/Sprite/Goat_outline_4 #64680.png.import new file mode 100644 index 0000000..101bea7 --- /dev/null +++ b/extracted/Sprite/Goat_outline_4 #64680.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw1yl3ch7yymb" +path="res://.godot/imported/Goat_outline_4 #64680.png-107eb0c016761b2e2fac4694423392cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_4 #64680.png" +dest_files=["res://.godot/imported/Goat_outline_4 #64680.png-107eb0c016761b2e2fac4694423392cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_4.png b/extracted/Sprite/Goat_outline_4.png new file mode 100644 index 0000000..a58b351 --- /dev/null +++ b/extracted/Sprite/Goat_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad35be3a92e528892e6201e890a4b5baa1458c511914f2be9011598981087cd1 +size 6681 diff --git a/extracted/Sprite/Goat_outline_4.png.import b/extracted/Sprite/Goat_outline_4.png.import new file mode 100644 index 0000000..945705e --- /dev/null +++ b/extracted/Sprite/Goat_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t22dhrmfjg3m" +path="res://.godot/imported/Goat_outline_4.png-171c267b3933af93b10c28fd18ed570e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_4.png" +dest_files=["res://.godot/imported/Goat_outline_4.png-171c267b3933af93b10c28fd18ed570e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_5 #64679.png b/extracted/Sprite/Goat_outline_5 #64679.png new file mode 100644 index 0000000..6b97d05 --- /dev/null +++ b/extracted/Sprite/Goat_outline_5 #64679.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4ece96bc701d53d09b8637d9b67957d875e95eac854650b1a79efadfbb79f1 +size 5895 diff --git a/extracted/Sprite/Goat_outline_5 #64679.png.import b/extracted/Sprite/Goat_outline_5 #64679.png.import new file mode 100644 index 0000000..e9a7a63 --- /dev/null +++ b/extracted/Sprite/Goat_outline_5 #64679.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dao7vxljqvb08" +path="res://.godot/imported/Goat_outline_5 #64679.png-07853aceb2d058e7558a6aad3f824209.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_5 #64679.png" +dest_files=["res://.godot/imported/Goat_outline_5 #64679.png-07853aceb2d058e7558a6aad3f824209.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_5.png b/extracted/Sprite/Goat_outline_5.png new file mode 100644 index 0000000..bf05ecf --- /dev/null +++ b/extracted/Sprite/Goat_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b12e991a0ff6972b6eb6b6e004961caf5472327c2194508ab9570a687ddf756 +size 8675 diff --git a/extracted/Sprite/Goat_outline_5.png.import b/extracted/Sprite/Goat_outline_5.png.import new file mode 100644 index 0000000..bdeb5e3 --- /dev/null +++ b/extracted/Sprite/Goat_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bheagkm6klr1b" +path="res://.godot/imported/Goat_outline_5.png-37b3655c2c1f81772c35ce1494cda2c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_5.png" +dest_files=["res://.godot/imported/Goat_outline_5.png-37b3655c2c1f81772c35ce1494cda2c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_6 #64593.png b/extracted/Sprite/Goat_outline_6 #64593.png new file mode 100644 index 0000000..03e5013 --- /dev/null +++ b/extracted/Sprite/Goat_outline_6 #64593.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5c60bdf513ad93f0caebe0e37ab7075b890e51c08fb60cb416c6683479d60c +size 3822 diff --git a/extracted/Sprite/Goat_outline_6 #64593.png.import b/extracted/Sprite/Goat_outline_6 #64593.png.import new file mode 100644 index 0000000..95e6ec3 --- /dev/null +++ b/extracted/Sprite/Goat_outline_6 #64593.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkgft5xo8vqwa" +path="res://.godot/imported/Goat_outline_6 #64593.png-8beb514d5cc01f300d266fefa3a51005.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_6 #64593.png" +dest_files=["res://.godot/imported/Goat_outline_6 #64593.png-8beb514d5cc01f300d266fefa3a51005.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Goat_outline_6.png b/extracted/Sprite/Goat_outline_6.png new file mode 100644 index 0000000..72f596d --- /dev/null +++ b/extracted/Sprite/Goat_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9aa76af9acf9ed2337e8c64abf62c2d079fdd6069492a6b61d010ea14ff6f2 +size 6151 diff --git a/extracted/Sprite/Goat_outline_6.png.import b/extracted/Sprite/Goat_outline_6.png.import new file mode 100644 index 0000000..8c88a38 --- /dev/null +++ b/extracted/Sprite/Goat_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq6by1fpwui0s" +path="res://.godot/imported/Goat_outline_6.png-370e15f75df900abb2ff192f8e6de357.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Goat_outline_6.png" +dest_files=["res://.godot/imported/Goat_outline_6.png-370e15f75df900abb2ff192f8e6de357.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Googles Hat Sticker.png b/extracted/Sprite/Googles Hat Sticker.png new file mode 100644 index 0000000..8010ba4 --- /dev/null +++ b/extracted/Sprite/Googles Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe386fe2c6b72f0312298afd1f40534100d01c22f8c7204ea82303b75dc921e +size 43411 diff --git a/extracted/Sprite/Googles Hat Sticker.png.import b/extracted/Sprite/Googles Hat Sticker.png.import new file mode 100644 index 0000000..7d33327 --- /dev/null +++ b/extracted/Sprite/Googles Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dri8ik7enpqd8" +path="res://.godot/imported/Googles Hat Sticker.png-602124b867fc25c712d97abd35b02054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Googles Hat Sticker.png" +dest_files=["res://.godot/imported/Googles Hat Sticker.png-602124b867fc25c712d97abd35b02054.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_1.png b/extracted/Sprite/Hipo_outline_1.png new file mode 100644 index 0000000..058f923 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cda4325e681ac3be86e687643ebae4000c5f49440421a3ae56939e556b6de0 +size 4331 diff --git a/extracted/Sprite/Hipo_outline_1.png.import b/extracted/Sprite/Hipo_outline_1.png.import new file mode 100644 index 0000000..88a17ad --- /dev/null +++ b/extracted/Sprite/Hipo_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhwwnhj0xietc" +path="res://.godot/imported/Hipo_outline_1.png-6a75e97ca7c6abe74891e3a6f887b612.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_1.png" +dest_files=["res://.godot/imported/Hipo_outline_1.png-6a75e97ca7c6abe74891e3a6f887b612.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_2 #63766.png b/extracted/Sprite/Hipo_outline_2 #63766.png new file mode 100644 index 0000000..5e0164d --- /dev/null +++ b/extracted/Sprite/Hipo_outline_2 #63766.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc70de557f5d848bfda70a6278827c26d17c27e1d9db0bc28d6580ff9b69bc2 +size 55177 diff --git a/extracted/Sprite/Hipo_outline_2 #63766.png.import b/extracted/Sprite/Hipo_outline_2 #63766.png.import new file mode 100644 index 0000000..7a0f086 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_2 #63766.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsyty4i5tq34" +path="res://.godot/imported/Hipo_outline_2 #63766.png-2446b5b6b78ef201a9ae71f3ae21b8fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_2 #63766.png" +dest_files=["res://.godot/imported/Hipo_outline_2 #63766.png-2446b5b6b78ef201a9ae71f3ae21b8fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_2.png b/extracted/Sprite/Hipo_outline_2.png new file mode 100644 index 0000000..e9a7e70 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197a23fe4c777a0b4ea356c869c38f77486837ca366f0a12396e5ae172456ce2 +size 41228 diff --git a/extracted/Sprite/Hipo_outline_2.png.import b/extracted/Sprite/Hipo_outline_2.png.import new file mode 100644 index 0000000..088a2db --- /dev/null +++ b/extracted/Sprite/Hipo_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcg7i1uxqr13y" +path="res://.godot/imported/Hipo_outline_2.png-5f995a8a76dbdb33864ba4428294322e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_2.png" +dest_files=["res://.godot/imported/Hipo_outline_2.png-5f995a8a76dbdb33864ba4428294322e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_4 #64565.png b/extracted/Sprite/Hipo_outline_4 #64565.png new file mode 100644 index 0000000..86ec583 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_4 #64565.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d80cb2b8dd2cc6b0b969f665f046a9b204a493b1e15b2ed20da033344a97384 +size 5702 diff --git a/extracted/Sprite/Hipo_outline_4 #64565.png.import b/extracted/Sprite/Hipo_outline_4 #64565.png.import new file mode 100644 index 0000000..b85cb82 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_4 #64565.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo1f4maksb0s0" +path="res://.godot/imported/Hipo_outline_4 #64565.png-8c23dcc25ad35d02c25ac11f27363ee0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_4 #64565.png" +dest_files=["res://.godot/imported/Hipo_outline_4 #64565.png-8c23dcc25ad35d02c25ac11f27363ee0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_4.png b/extracted/Sprite/Hipo_outline_4.png new file mode 100644 index 0000000..14eed98 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0e41a9b57c60175ecbddf8a1c410b16bbc611b61129f8337440bd5f7e79ae6 +size 10885 diff --git a/extracted/Sprite/Hipo_outline_4.png.import b/extracted/Sprite/Hipo_outline_4.png.import new file mode 100644 index 0000000..0f2a810 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjynl2d0dhf1i" +path="res://.godot/imported/Hipo_outline_4.png-69be0ca2a42ebdb63c4f43d8dcf4cdc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_4.png" +dest_files=["res://.godot/imported/Hipo_outline_4.png-69be0ca2a42ebdb63c4f43d8dcf4cdc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_5 #64693.png b/extracted/Sprite/Hipo_outline_5 #64693.png new file mode 100644 index 0000000..84cc0d5 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_5 #64693.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f19cbc145f10bb2222e7bf13a06a11595fa816c27716263ab9093394483378 +size 28374 diff --git a/extracted/Sprite/Hipo_outline_5 #64693.png.import b/extracted/Sprite/Hipo_outline_5 #64693.png.import new file mode 100644 index 0000000..a7574b2 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_5 #64693.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://owmitoct6kpn" +path="res://.godot/imported/Hipo_outline_5 #64693.png-96c42f7db077da0b23fc2fcf62a3f80f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_5 #64693.png" +dest_files=["res://.godot/imported/Hipo_outline_5 #64693.png-96c42f7db077da0b23fc2fcf62a3f80f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_5.png b/extracted/Sprite/Hipo_outline_5.png new file mode 100644 index 0000000..afeca32 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d2f2c5399ade657c1657c89e4076dcd5f36bdf29875bcc834bb295c8f7b163 +size 39855 diff --git a/extracted/Sprite/Hipo_outline_5.png.import b/extracted/Sprite/Hipo_outline_5.png.import new file mode 100644 index 0000000..c73dea0 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvlfea0p1oqib" +path="res://.godot/imported/Hipo_outline_5.png-eeecf498be4ccefa5293d9b33a352549.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_5.png" +dest_files=["res://.godot/imported/Hipo_outline_5.png-eeecf498be4ccefa5293d9b33a352549.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_6 #64719.png b/extracted/Sprite/Hipo_outline_6 #64719.png new file mode 100644 index 0000000..52f5280 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_6 #64719.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d72e21eb6d232f96ee48ecd03d9b28345256e17fc708d7fc5c8ef40aaad6326 +size 13938 diff --git a/extracted/Sprite/Hipo_outline_6 #64719.png.import b/extracted/Sprite/Hipo_outline_6 #64719.png.import new file mode 100644 index 0000000..bd5d36b --- /dev/null +++ b/extracted/Sprite/Hipo_outline_6 #64719.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt5np4p8y1llc" +path="res://.godot/imported/Hipo_outline_6 #64719.png-c67c6c51c430d6aaf03ed53d858e62f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_6 #64719.png" +dest_files=["res://.godot/imported/Hipo_outline_6 #64719.png-c67c6c51c430d6aaf03ed53d858e62f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_6.png b/extracted/Sprite/Hipo_outline_6.png new file mode 100644 index 0000000..f5d742b --- /dev/null +++ b/extracted/Sprite/Hipo_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c955fb192f8bb39124b6958e14c3f27963c735ab0d69ce5db174398bc3e066cf +size 18712 diff --git a/extracted/Sprite/Hipo_outline_6.png.import b/extracted/Sprite/Hipo_outline_6.png.import new file mode 100644 index 0000000..652946b --- /dev/null +++ b/extracted/Sprite/Hipo_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwbidfdyacln5" +path="res://.godot/imported/Hipo_outline_6.png-a3a2ee00fd69e5e52544a2ef49f1138e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_6.png" +dest_files=["res://.godot/imported/Hipo_outline_6.png-a3a2ee00fd69e5e52544a2ef49f1138e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_7 #64544.png b/extracted/Sprite/Hipo_outline_7 #64544.png new file mode 100644 index 0000000..ce04327 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_7 #64544.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded81c1e2ba08c3506540b51cb2ce23237b66432ab2227df35cb018f530abaef +size 13422 diff --git a/extracted/Sprite/Hipo_outline_7 #64544.png.import b/extracted/Sprite/Hipo_outline_7 #64544.png.import new file mode 100644 index 0000000..3b54398 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_7 #64544.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coogy0dq106ts" +path="res://.godot/imported/Hipo_outline_7 #64544.png-8c52581cb657bc0ca2beeecde08f99aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_7 #64544.png" +dest_files=["res://.godot/imported/Hipo_outline_7 #64544.png-8c52581cb657bc0ca2beeecde08f99aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_7.png b/extracted/Sprite/Hipo_outline_7.png new file mode 100644 index 0000000..015c356 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd4fc7d2dcfa018e507f91616b59f9f5b6ef235673ac7f1c326e3050f4b1c8a +size 18437 diff --git a/extracted/Sprite/Hipo_outline_7.png.import b/extracted/Sprite/Hipo_outline_7.png.import new file mode 100644 index 0000000..5cddf8b --- /dev/null +++ b/extracted/Sprite/Hipo_outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3gba8eoe4p83" +path="res://.godot/imported/Hipo_outline_7.png-4e43acad2eac672c2e3d3ce4058b1049.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_7.png" +dest_files=["res://.godot/imported/Hipo_outline_7.png-4e43acad2eac672c2e3d3ce4058b1049.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_8.png b/extracted/Sprite/Hipo_outline_8.png new file mode 100644 index 0000000..a6d85b8 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32acd66468e1eba1cab70a0d61982a0b7dc02bd88adb51dbe79458b30f0b0f1 +size 27373 diff --git a/extracted/Sprite/Hipo_outline_8.png.import b/extracted/Sprite/Hipo_outline_8.png.import new file mode 100644 index 0000000..c8986cc --- /dev/null +++ b/extracted/Sprite/Hipo_outline_8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbf4tcy8434lq" +path="res://.godot/imported/Hipo_outline_8.png-2c85a803af7a57b65308cd765b8f775f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_8.png" +dest_files=["res://.godot/imported/Hipo_outline_8.png-2c85a803af7a57b65308cd765b8f775f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_9 #64657.png b/extracted/Sprite/Hipo_outline_9 #64657.png new file mode 100644 index 0000000..7b10d91 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_9 #64657.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ed87334f6364e09f394903797064c340d8ffeb022983af623afadf4b4705ee +size 16108 diff --git a/extracted/Sprite/Hipo_outline_9 #64657.png.import b/extracted/Sprite/Hipo_outline_9 #64657.png.import new file mode 100644 index 0000000..7a2a39d --- /dev/null +++ b/extracted/Sprite/Hipo_outline_9 #64657.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3orap4xtnxr4" +path="res://.godot/imported/Hipo_outline_9 #64657.png-e50066a87576b4421665a67d7dfe9bfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_9 #64657.png" +dest_files=["res://.godot/imported/Hipo_outline_9 #64657.png-e50066a87576b4421665a67d7dfe9bfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Hipo_outline_9.png b/extracted/Sprite/Hipo_outline_9.png new file mode 100644 index 0000000..fd4506f --- /dev/null +++ b/extracted/Sprite/Hipo_outline_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06db79d1473b15b9dd884a2b17f3985695a2accf06dee32075337d2ef88fb2e +size 20396 diff --git a/extracted/Sprite/Hipo_outline_9.png.import b/extracted/Sprite/Hipo_outline_9.png.import new file mode 100644 index 0000000..093bfa6 --- /dev/null +++ b/extracted/Sprite/Hipo_outline_9.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chyvm46k0wb55" +path="res://.godot/imported/Hipo_outline_9.png-5e1f29d531318c6236170ef8d2f711a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Hipo_outline_9.png" +dest_files=["res://.godot/imported/Hipo_outline_9.png-5e1f29d531318c6236170ef8d2f711a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/No-Hat-Sticker.png b/extracted/Sprite/No-Hat-Sticker.png new file mode 100644 index 0000000..dd7db36 --- /dev/null +++ b/extracted/Sprite/No-Hat-Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3b16cc021f083bf2094de9354525691df77480b5bbb473841359318340d9f3 +size 48869 diff --git a/extracted/Sprite/No-Hat-Sticker.png.import b/extracted/Sprite/No-Hat-Sticker.png.import new file mode 100644 index 0000000..c182e67 --- /dev/null +++ b/extracted/Sprite/No-Hat-Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tfrc1htk5mtu" +path="res://.godot/imported/No-Hat-Sticker.png-a2c5b672f81173c90e9ed0f547a02219.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/No-Hat-Sticker.png" +dest_files=["res://.godot/imported/No-Hat-Sticker.png-a2c5b672f81173c90e9ed0f547a02219.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_0 #64557.png b/extracted/Sprite/Owl2_outline_0 #64557.png new file mode 100644 index 0000000..1cb5563 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_0 #64557.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f66894f98245a92be8ed12b859ab6226be8b1c1bb51a2cc58a472ca3b24683c +size 29169 diff --git a/extracted/Sprite/Owl2_outline_0 #64557.png.import b/extracted/Sprite/Owl2_outline_0 #64557.png.import new file mode 100644 index 0000000..adb9258 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_0 #64557.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cchokidywn5hg" +path="res://.godot/imported/Owl2_outline_0 #64557.png-5ab77b006fbc719bb110e0e8a75eb5e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_0 #64557.png" +dest_files=["res://.godot/imported/Owl2_outline_0 #64557.png-5ab77b006fbc719bb110e0e8a75eb5e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_0.png b/extracted/Sprite/Owl2_outline_0.png new file mode 100644 index 0000000..675b2a4 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6f6df36dac612e299c438b7f359d169ee303573aaa76583fd45bcf4ce7cb06 +size 35052 diff --git a/extracted/Sprite/Owl2_outline_0.png.import b/extracted/Sprite/Owl2_outline_0.png.import new file mode 100644 index 0000000..0360beb --- /dev/null +++ b/extracted/Sprite/Owl2_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mbey7ffcjw07" +path="res://.godot/imported/Owl2_outline_0.png-46e040aa9b28c845ec8c07d98be73152.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_0.png" +dest_files=["res://.godot/imported/Owl2_outline_0.png-46e040aa9b28c845ec8c07d98be73152.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_1 #64502.png b/extracted/Sprite/Owl2_outline_1 #64502.png new file mode 100644 index 0000000..3eaad9c --- /dev/null +++ b/extracted/Sprite/Owl2_outline_1 #64502.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08130b7dee23c0843bc0b61f7348821dbc4ff2f8e2aa6d8dbcc64347fb00bfa +size 36777 diff --git a/extracted/Sprite/Owl2_outline_1 #64502.png.import b/extracted/Sprite/Owl2_outline_1 #64502.png.import new file mode 100644 index 0000000..1146d8a --- /dev/null +++ b/extracted/Sprite/Owl2_outline_1 #64502.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxw1tmofhk7lr" +path="res://.godot/imported/Owl2_outline_1 #64502.png-63bf4cba4665be2abeb4519b315df5e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_1 #64502.png" +dest_files=["res://.godot/imported/Owl2_outline_1 #64502.png-63bf4cba4665be2abeb4519b315df5e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_1.png b/extracted/Sprite/Owl2_outline_1.png new file mode 100644 index 0000000..7a60e0e --- /dev/null +++ b/extracted/Sprite/Owl2_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b578fd2561f84519b760e788c6c717578158a69bb0863b6c492993bb35ac8b +size 30873 diff --git a/extracted/Sprite/Owl2_outline_1.png.import b/extracted/Sprite/Owl2_outline_1.png.import new file mode 100644 index 0000000..5731336 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k4ht0f6mcucn" +path="res://.godot/imported/Owl2_outline_1.png-cb7052bbb631ffb066beea16f224ca3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_1.png" +dest_files=["res://.godot/imported/Owl2_outline_1.png-cb7052bbb631ffb066beea16f224ca3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_2 #64386.png b/extracted/Sprite/Owl2_outline_2 #64386.png new file mode 100644 index 0000000..138aec6 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_2 #64386.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6a66fb7165261bf8e406e641a1b0c66ca7714f4585f9154a152922d53a0c79 +size 15722 diff --git a/extracted/Sprite/Owl2_outline_2 #64386.png.import b/extracted/Sprite/Owl2_outline_2 #64386.png.import new file mode 100644 index 0000000..1f2bbd0 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_2 #64386.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbjc6snrxks14" +path="res://.godot/imported/Owl2_outline_2 #64386.png-c5ea3e2360d3b0c47f9ec6ddf0da7464.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_2 #64386.png" +dest_files=["res://.godot/imported/Owl2_outline_2 #64386.png-c5ea3e2360d3b0c47f9ec6ddf0da7464.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_2.png b/extracted/Sprite/Owl2_outline_2.png new file mode 100644 index 0000000..a9de1da --- /dev/null +++ b/extracted/Sprite/Owl2_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16fe6b4ebdc24ed029a930adb2975f146d80bfdecfb93087c18c77066573acf +size 11346 diff --git a/extracted/Sprite/Owl2_outline_2.png.import b/extracted/Sprite/Owl2_outline_2.png.import new file mode 100644 index 0000000..a192766 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnhj3u5gd6lqe" +path="res://.godot/imported/Owl2_outline_2.png-7c76c10d76569cd296b6b682d30c774d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_2.png" +dest_files=["res://.godot/imported/Owl2_outline_2.png-7c76c10d76569cd296b6b682d30c774d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_3 #64572.png b/extracted/Sprite/Owl2_outline_3 #64572.png new file mode 100644 index 0000000..4116118 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_3 #64572.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926b6f906055f5c993fa741b366c34150372b9ed6b5fa02d60af5e2d4d9e4bd2 +size 21644 diff --git a/extracted/Sprite/Owl2_outline_3 #64572.png.import b/extracted/Sprite/Owl2_outline_3 #64572.png.import new file mode 100644 index 0000000..e5957c2 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_3 #64572.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cknesm5frm0kl" +path="res://.godot/imported/Owl2_outline_3 #64572.png-5cd79450deaf921d4dde81d50dd393fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_3 #64572.png" +dest_files=["res://.godot/imported/Owl2_outline_3 #64572.png-5cd79450deaf921d4dde81d50dd393fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_3.png b/extracted/Sprite/Owl2_outline_3.png new file mode 100644 index 0000000..144d16a --- /dev/null +++ b/extracted/Sprite/Owl2_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb0759963f2b0584ca7aaca748e20f22db94930fa345a78813f12fc89ae6b03 +size 26652 diff --git a/extracted/Sprite/Owl2_outline_3.png.import b/extracted/Sprite/Owl2_outline_3.png.import new file mode 100644 index 0000000..13c666b --- /dev/null +++ b/extracted/Sprite/Owl2_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7152h7yi3wob" +path="res://.godot/imported/Owl2_outline_3.png-96e4d5b05ba6880a6c4bdd3b9c663e1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_3.png" +dest_files=["res://.godot/imported/Owl2_outline_3.png-96e4d5b05ba6880a6c4bdd3b9c663e1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_4 #64683.png b/extracted/Sprite/Owl2_outline_4 #64683.png new file mode 100644 index 0000000..b79fb78 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_4 #64683.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6104fc23de6bf989eec46e6f8169aeff64fd1ea26a275cda3527bf7dcc1e51fd +size 34338 diff --git a/extracted/Sprite/Owl2_outline_4 #64683.png.import b/extracted/Sprite/Owl2_outline_4 #64683.png.import new file mode 100644 index 0000000..8afb335 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_4 #64683.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3sfpa7f3n50f" +path="res://.godot/imported/Owl2_outline_4 #64683.png-03538e02edd8ff233f7b04b1bd1b8c2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_4 #64683.png" +dest_files=["res://.godot/imported/Owl2_outline_4 #64683.png-03538e02edd8ff233f7b04b1bd1b8c2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_4.png b/extracted/Sprite/Owl2_outline_4.png new file mode 100644 index 0000000..8b567b4 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d746c64eb662d7a5de207563f4c0d8a90efd9187961669ccad5d07ece35fdbed +size 42398 diff --git a/extracted/Sprite/Owl2_outline_4.png.import b/extracted/Sprite/Owl2_outline_4.png.import new file mode 100644 index 0000000..41b8e5d --- /dev/null +++ b/extracted/Sprite/Owl2_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm5geeiugyxks" +path="res://.godot/imported/Owl2_outline_4.png-7afc355bf34de3e517ef3c2419f562f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_4.png" +dest_files=["res://.godot/imported/Owl2_outline_4.png-7afc355bf34de3e517ef3c2419f562f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_5 #64545.png b/extracted/Sprite/Owl2_outline_5 #64545.png new file mode 100644 index 0000000..486205a --- /dev/null +++ b/extracted/Sprite/Owl2_outline_5 #64545.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1889e8ac63654b5b361d9b4c273e8b960df4b44db15983fc5680192c9e1c2b +size 5417 diff --git a/extracted/Sprite/Owl2_outline_5 #64545.png.import b/extracted/Sprite/Owl2_outline_5 #64545.png.import new file mode 100644 index 0000000..1d096c1 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_5 #64545.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qguht0uspfdx" +path="res://.godot/imported/Owl2_outline_5 #64545.png-d71d1ed17220209956583d020b652006.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_5 #64545.png" +dest_files=["res://.godot/imported/Owl2_outline_5 #64545.png-d71d1ed17220209956583d020b652006.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl2_outline_5.png b/extracted/Sprite/Owl2_outline_5.png new file mode 100644 index 0000000..846b708 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e956c348bd7fdb0b3ec95d1aba955c890874550012c6799033fb76477316dc +size 7656 diff --git a/extracted/Sprite/Owl2_outline_5.png.import b/extracted/Sprite/Owl2_outline_5.png.import new file mode 100644 index 0000000..8ef7a36 --- /dev/null +++ b/extracted/Sprite/Owl2_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://htw02ltknk5c" +path="res://.godot/imported/Owl2_outline_5.png-64cd064a825d3f153d370c84553efe5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl2_outline_5.png" +dest_files=["res://.godot/imported/Owl2_outline_5.png-64cd064a825d3f153d370c84553efe5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_0 #64717.png b/extracted/Sprite/Owl_outline_0 #64717.png new file mode 100644 index 0000000..5d6f555 --- /dev/null +++ b/extracted/Sprite/Owl_outline_0 #64717.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f40f042f1635eff904dbaba1d8601b2429aacbd21796a4aa0e92b3985f77d2 +size 46003 diff --git a/extracted/Sprite/Owl_outline_0 #64717.png.import b/extracted/Sprite/Owl_outline_0 #64717.png.import new file mode 100644 index 0000000..3427b63 --- /dev/null +++ b/extracted/Sprite/Owl_outline_0 #64717.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7r208ufqhqls" +path="res://.godot/imported/Owl_outline_0 #64717.png-79f56a8703fffba6023e82b851d33b78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_0 #64717.png" +dest_files=["res://.godot/imported/Owl_outline_0 #64717.png-79f56a8703fffba6023e82b851d33b78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_0.png b/extracted/Sprite/Owl_outline_0.png new file mode 100644 index 0000000..e06e54c --- /dev/null +++ b/extracted/Sprite/Owl_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2943ff5a00142b24b2b2cd43898c77c7141aaf0edb7f7bbecf1a67477f5fda +size 53315 diff --git a/extracted/Sprite/Owl_outline_0.png.import b/extracted/Sprite/Owl_outline_0.png.import new file mode 100644 index 0000000..a6eaee9 --- /dev/null +++ b/extracted/Sprite/Owl_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c37lvc67pitht" +path="res://.godot/imported/Owl_outline_0.png-bfc42cb1827593545b50aa8772183acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_0.png" +dest_files=["res://.godot/imported/Owl_outline_0.png-bfc42cb1827593545b50aa8772183acc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_1 #64357.png b/extracted/Sprite/Owl_outline_1 #64357.png new file mode 100644 index 0000000..8e43983 --- /dev/null +++ b/extracted/Sprite/Owl_outline_1 #64357.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949e3e1f8e57e342ca9da60fd25f2efeb40de9a0d395369c4fed68065ff495fc +size 42422 diff --git a/extracted/Sprite/Owl_outline_1 #64357.png.import b/extracted/Sprite/Owl_outline_1 #64357.png.import new file mode 100644 index 0000000..d9589f1 --- /dev/null +++ b/extracted/Sprite/Owl_outline_1 #64357.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dautluwpht6ej" +path="res://.godot/imported/Owl_outline_1 #64357.png-15dc5840b1227d891f2badceca8b201d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_1 #64357.png" +dest_files=["res://.godot/imported/Owl_outline_1 #64357.png-15dc5840b1227d891f2badceca8b201d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_1.png b/extracted/Sprite/Owl_outline_1.png new file mode 100644 index 0000000..18c086f --- /dev/null +++ b/extracted/Sprite/Owl_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b155ad02a4eb43b026e2b71423092f9165fde747e8d7a13add2d446fd17dc4 +size 36171 diff --git a/extracted/Sprite/Owl_outline_1.png.import b/extracted/Sprite/Owl_outline_1.png.import new file mode 100644 index 0000000..c378f67 --- /dev/null +++ b/extracted/Sprite/Owl_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djrq5mydd5reo" +path="res://.godot/imported/Owl_outline_1.png-71da4c0c589005e87a9d1c83476d0d9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_1.png" +dest_files=["res://.godot/imported/Owl_outline_1.png-71da4c0c589005e87a9d1c83476d0d9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_2 #64682.png b/extracted/Sprite/Owl_outline_2 #64682.png new file mode 100644 index 0000000..eb9da34 --- /dev/null +++ b/extracted/Sprite/Owl_outline_2 #64682.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17890b4ca6732094b6779c8d7e30feb163ac8df6eec8d881a15fdf6e9e03c132 +size 12498 diff --git a/extracted/Sprite/Owl_outline_2 #64682.png.import b/extracted/Sprite/Owl_outline_2 #64682.png.import new file mode 100644 index 0000000..134062c --- /dev/null +++ b/extracted/Sprite/Owl_outline_2 #64682.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf7cwmyo8nb66" +path="res://.godot/imported/Owl_outline_2 #64682.png-732c21291bc1859699c37dceec554053.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_2 #64682.png" +dest_files=["res://.godot/imported/Owl_outline_2 #64682.png-732c21291bc1859699c37dceec554053.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_2.png b/extracted/Sprite/Owl_outline_2.png new file mode 100644 index 0000000..aa9db46 --- /dev/null +++ b/extracted/Sprite/Owl_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a60bb5d0bf6b716b33dd328b37421a94c226b70eb3f2784f84b7cb6f395b57 +size 17099 diff --git a/extracted/Sprite/Owl_outline_2.png.import b/extracted/Sprite/Owl_outline_2.png.import new file mode 100644 index 0000000..93894cc --- /dev/null +++ b/extracted/Sprite/Owl_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp5xqnsvu6que" +path="res://.godot/imported/Owl_outline_2.png-cf9333df78a9ae94967e47b0f12a69a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_2.png" +dest_files=["res://.godot/imported/Owl_outline_2.png-cf9333df78a9ae94967e47b0f12a69a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_3 #64694.png b/extracted/Sprite/Owl_outline_3 #64694.png new file mode 100644 index 0000000..77502a4 --- /dev/null +++ b/extracted/Sprite/Owl_outline_3 #64694.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccea41fc90581c2fa5ad23f7412efbee29d5d7185d8d29f3e61a37bb2d625885 +size 8283 diff --git a/extracted/Sprite/Owl_outline_3 #64694.png.import b/extracted/Sprite/Owl_outline_3 #64694.png.import new file mode 100644 index 0000000..a1cc85f --- /dev/null +++ b/extracted/Sprite/Owl_outline_3 #64694.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6klg5yi4dsuj" +path="res://.godot/imported/Owl_outline_3 #64694.png-afc4f2c9786dc220a4abe84abf2e7025.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_3 #64694.png" +dest_files=["res://.godot/imported/Owl_outline_3 #64694.png-afc4f2c9786dc220a4abe84abf2e7025.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_3.png b/extracted/Sprite/Owl_outline_3.png new file mode 100644 index 0000000..90ba277 --- /dev/null +++ b/extracted/Sprite/Owl_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22f4d859f4375358143d051935c6281e3fe1a2923f26f1483425f43aa644124 +size 11572 diff --git a/extracted/Sprite/Owl_outline_3.png.import b/extracted/Sprite/Owl_outline_3.png.import new file mode 100644 index 0000000..4bc786e --- /dev/null +++ b/extracted/Sprite/Owl_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpsobr4r8hc3r" +path="res://.godot/imported/Owl_outline_3.png-e3dde808fa640defe69689921c7df356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_3.png" +dest_files=["res://.godot/imported/Owl_outline_3.png-e3dde808fa640defe69689921c7df356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_4 #64520.png b/extracted/Sprite/Owl_outline_4 #64520.png new file mode 100644 index 0000000..12db618 --- /dev/null +++ b/extracted/Sprite/Owl_outline_4 #64520.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc630569cd922844e55b27d11d64aeaf3c832d72b950b0821d58aa8761688145 +size 3812 diff --git a/extracted/Sprite/Owl_outline_4 #64520.png.import b/extracted/Sprite/Owl_outline_4 #64520.png.import new file mode 100644 index 0000000..94eff39 --- /dev/null +++ b/extracted/Sprite/Owl_outline_4 #64520.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cktxii0e66h76" +path="res://.godot/imported/Owl_outline_4 #64520.png-f2ddb34e408eb481bf5fdcf74a538cd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_4 #64520.png" +dest_files=["res://.godot/imported/Owl_outline_4 #64520.png-f2ddb34e408eb481bf5fdcf74a538cd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_4.png b/extracted/Sprite/Owl_outline_4.png new file mode 100644 index 0000000..dfdede3 --- /dev/null +++ b/extracted/Sprite/Owl_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec432b6275eb25bce6666f4f4b2c66906c2cf5cb2a9cbfdeb85166a644f6f79 +size 6119 diff --git a/extracted/Sprite/Owl_outline_4.png.import b/extracted/Sprite/Owl_outline_4.png.import new file mode 100644 index 0000000..9e9375f --- /dev/null +++ b/extracted/Sprite/Owl_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce2nt3uknytpd" +path="res://.godot/imported/Owl_outline_4.png-ca65ae05cdd16a3a0ce26b2beb43de46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_4.png" +dest_files=["res://.godot/imported/Owl_outline_4.png-ca65ae05cdd16a3a0ce26b2beb43de46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_5 #64289.png b/extracted/Sprite/Owl_outline_5 #64289.png new file mode 100644 index 0000000..69c471b --- /dev/null +++ b/extracted/Sprite/Owl_outline_5 #64289.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91490da646ac3725576b6c4e1f108969b22844e08f5f3c7b0ebcdb4ee864872 +size 25411 diff --git a/extracted/Sprite/Owl_outline_5 #64289.png.import b/extracted/Sprite/Owl_outline_5 #64289.png.import new file mode 100644 index 0000000..dc769d7 --- /dev/null +++ b/extracted/Sprite/Owl_outline_5 #64289.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b451wafrbfp7l" +path="res://.godot/imported/Owl_outline_5 #64289.png-53e10fd2a820f200be0ffcba97d897ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_5 #64289.png" +dest_files=["res://.godot/imported/Owl_outline_5 #64289.png-53e10fd2a820f200be0ffcba97d897ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_5.png b/extracted/Sprite/Owl_outline_5.png new file mode 100644 index 0000000..7bfd2df --- /dev/null +++ b/extracted/Sprite/Owl_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb72126ccd9ec75ab4c62811b965df9594650c027b96e0d7ab483f0acba21299 +size 20824 diff --git a/extracted/Sprite/Owl_outline_5.png.import b/extracted/Sprite/Owl_outline_5.png.import new file mode 100644 index 0000000..5e2c7b4 --- /dev/null +++ b/extracted/Sprite/Owl_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btu4qgjlg2lsp" +path="res://.godot/imported/Owl_outline_5.png-8ec9914bf383a7e38a1f01c72f57a813.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_5.png" +dest_files=["res://.godot/imported/Owl_outline_5.png-8ec9914bf383a7e38a1f01c72f57a813.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_6 #64412.png b/extracted/Sprite/Owl_outline_6 #64412.png new file mode 100644 index 0000000..09de1af --- /dev/null +++ b/extracted/Sprite/Owl_outline_6 #64412.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06818fcb93050fac2ab95b886cae10836fc1fd67b67c6058e22944b640bdbda +size 9879 diff --git a/extracted/Sprite/Owl_outline_6 #64412.png.import b/extracted/Sprite/Owl_outline_6 #64412.png.import new file mode 100644 index 0000000..a76950d --- /dev/null +++ b/extracted/Sprite/Owl_outline_6 #64412.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tqkuone4evup" +path="res://.godot/imported/Owl_outline_6 #64412.png-e47490f69e252f499216e919d4c528da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_6 #64412.png" +dest_files=["res://.godot/imported/Owl_outline_6 #64412.png-e47490f69e252f499216e919d4c528da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Owl_outline_6.png b/extracted/Sprite/Owl_outline_6.png new file mode 100644 index 0000000..812f8b9 --- /dev/null +++ b/extracted/Sprite/Owl_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4778920a24e494f148a358dad65b9a0d078883ad625a83a24fdb5ce06e8b2973 +size 6804 diff --git a/extracted/Sprite/Owl_outline_6.png.import b/extracted/Sprite/Owl_outline_6.png.import new file mode 100644 index 0000000..3e68a28 --- /dev/null +++ b/extracted/Sprite/Owl_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfjicsfto8xk" +path="res://.godot/imported/Owl_outline_6.png-d605896e16a96014e7ca9501fce1bb60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Owl_outline_6.png" +dest_files=["res://.godot/imported/Owl_outline_6.png-d605896e16a96014e7ca9501fce1bb60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_0 #64348.png b/extracted/Sprite/Pinguino_outline_0 #64348.png new file mode 100644 index 0000000..ab8f735 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_0 #64348.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6610c5e66f15f1477228d8c1a1c8e2985925a75b40833a4175fe43f5d15dabad +size 46375 diff --git a/extracted/Sprite/Pinguino_outline_0 #64348.png.import b/extracted/Sprite/Pinguino_outline_0 #64348.png.import new file mode 100644 index 0000000..cee30f4 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_0 #64348.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://covckf4j84nvu" +path="res://.godot/imported/Pinguino_outline_0 #64348.png-af99f3a768b3b802035e7d6abb68b95f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_0 #64348.png" +dest_files=["res://.godot/imported/Pinguino_outline_0 #64348.png-af99f3a768b3b802035e7d6abb68b95f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_0.png b/extracted/Sprite/Pinguino_outline_0.png new file mode 100644 index 0000000..9c4436a --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b243942ba8649dede2ba4511902654c96cb3a90266b92769566f4b8bda553722 +size 40814 diff --git a/extracted/Sprite/Pinguino_outline_0.png.import b/extracted/Sprite/Pinguino_outline_0.png.import new file mode 100644 index 0000000..f1e943f --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd8a4ixxdvkyy" +path="res://.godot/imported/Pinguino_outline_0.png-8c67d16e376358aea08aedcbd6a52614.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_0.png" +dest_files=["res://.godot/imported/Pinguino_outline_0.png-8c67d16e376358aea08aedcbd6a52614.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_1 #64521.png b/extracted/Sprite/Pinguino_outline_1 #64521.png new file mode 100644 index 0000000..adc444d --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_1 #64521.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8a2c74811f4bab0451abed2198dd887f1bfcbf510f598a5e98863d75959ac5 +size 16290 diff --git a/extracted/Sprite/Pinguino_outline_1 #64521.png.import b/extracted/Sprite/Pinguino_outline_1 #64521.png.import new file mode 100644 index 0000000..13b6100 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_1 #64521.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpwkolpykxl0y" +path="res://.godot/imported/Pinguino_outline_1 #64521.png-c5459fc33893321c997dc1d3758b9360.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_1 #64521.png" +dest_files=["res://.godot/imported/Pinguino_outline_1 #64521.png-c5459fc33893321c997dc1d3758b9360.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_1.png b/extracted/Sprite/Pinguino_outline_1.png new file mode 100644 index 0000000..b42e346 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889509dbdde07b9ab2dfb7dee673c0d8f75d9c0929fa9ee9172a8f25143e6cea +size 20040 diff --git a/extracted/Sprite/Pinguino_outline_1.png.import b/extracted/Sprite/Pinguino_outline_1.png.import new file mode 100644 index 0000000..6822f4c --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfqdxoahc4h8n" +path="res://.godot/imported/Pinguino_outline_1.png-867be32730a8f614a16bb999ceff94f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_1.png" +dest_files=["res://.godot/imported/Pinguino_outline_1.png-867be32730a8f614a16bb999ceff94f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_2 #63654.png b/extracted/Sprite/Pinguino_outline_2 #63654.png new file mode 100644 index 0000000..0ee66b3 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_2 #63654.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb5c4e785ebf7659a1cc8152b36a186238f389c048e069b1aea20ebb2bb53f7 +size 41537 diff --git a/extracted/Sprite/Pinguino_outline_2 #63654.png.import b/extracted/Sprite/Pinguino_outline_2 #63654.png.import new file mode 100644 index 0000000..ec17284 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_2 #63654.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m82xpa4wsrqk" +path="res://.godot/imported/Pinguino_outline_2 #63654.png-18ed7195d9de897e9566f3fb9bf88a7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_2 #63654.png" +dest_files=["res://.godot/imported/Pinguino_outline_2 #63654.png-18ed7195d9de897e9566f3fb9bf88a7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_2.png b/extracted/Sprite/Pinguino_outline_2.png new file mode 100644 index 0000000..ab8bc21 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baaf0953c5889d4c960539020c631abcba3f2659e6b852c487ddbab8abf5691a +size 35967 diff --git a/extracted/Sprite/Pinguino_outline_2.png.import b/extracted/Sprite/Pinguino_outline_2.png.import new file mode 100644 index 0000000..0bd9683 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nv7fgrdc4oen" +path="res://.godot/imported/Pinguino_outline_2.png-28c0b0f5e03d0cbb8f86b4e62515297d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_2.png" +dest_files=["res://.godot/imported/Pinguino_outline_2.png-28c0b0f5e03d0cbb8f86b4e62515297d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_3 #64356.png b/extracted/Sprite/Pinguino_outline_3 #64356.png new file mode 100644 index 0000000..6df6ef3 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_3 #64356.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85464ccf99fe757083c24d351a03b423554734f975b5313dfb1e512d9ae5cbd +size 18586 diff --git a/extracted/Sprite/Pinguino_outline_3 #64356.png.import b/extracted/Sprite/Pinguino_outline_3 #64356.png.import new file mode 100644 index 0000000..6ec00c0 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_3 #64356.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chnsinps6qrql" +path="res://.godot/imported/Pinguino_outline_3 #64356.png-d67f53473c7768d8328fd5c232bd3af6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_3 #64356.png" +dest_files=["res://.godot/imported/Pinguino_outline_3 #64356.png-d67f53473c7768d8328fd5c232bd3af6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_3.png b/extracted/Sprite/Pinguino_outline_3.png new file mode 100644 index 0000000..5741a9c --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e971fa745a11f2e0808c54db809087b9be076f9ac60dd68d390f30404af0e9 +size 14820 diff --git a/extracted/Sprite/Pinguino_outline_3.png.import b/extracted/Sprite/Pinguino_outline_3.png.import new file mode 100644 index 0000000..0ccf327 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3fi18q6gkuc1" +path="res://.godot/imported/Pinguino_outline_3.png-e0e49e4cac1780a3d99d59afea166f81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_3.png" +dest_files=["res://.godot/imported/Pinguino_outline_3.png-e0e49e4cac1780a3d99d59afea166f81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_4 #64670.png b/extracted/Sprite/Pinguino_outline_4 #64670.png new file mode 100644 index 0000000..64dcfb0 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_4 #64670.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f7442d81fed75e14bcc6c880fc3912a07f56682eb7926db5e023e490b24d9f +size 4514 diff --git a/extracted/Sprite/Pinguino_outline_4 #64670.png.import b/extracted/Sprite/Pinguino_outline_4 #64670.png.import new file mode 100644 index 0000000..d240e9d --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_4 #64670.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0rj8puaa7cjx" +path="res://.godot/imported/Pinguino_outline_4 #64670.png-e65c16e5f6176b6cccb82d53b653305f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_4 #64670.png" +dest_files=["res://.godot/imported/Pinguino_outline_4 #64670.png-e65c16e5f6176b6cccb82d53b653305f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_4.png b/extracted/Sprite/Pinguino_outline_4.png new file mode 100644 index 0000000..44be251 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6325e0ee530f143a96a608659db3041d3a3a0adba2363632f8bf8180f3100d51 +size 6744 diff --git a/extracted/Sprite/Pinguino_outline_4.png.import b/extracted/Sprite/Pinguino_outline_4.png.import new file mode 100644 index 0000000..6dc6638 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5nkpt67e2utm" +path="res://.godot/imported/Pinguino_outline_4.png-92323e4ecdf2df9604e2961b2c70e5a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_4.png" +dest_files=["res://.godot/imported/Pinguino_outline_4.png-92323e4ecdf2df9604e2961b2c70e5a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_5 #64691.png b/extracted/Sprite/Pinguino_outline_5 #64691.png new file mode 100644 index 0000000..758e232 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_5 #64691.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638aea33f45d990058dab81a9796256a55cf26b904d5175e98a4e2ddf9deac94 +size 3214 diff --git a/extracted/Sprite/Pinguino_outline_5 #64691.png.import b/extracted/Sprite/Pinguino_outline_5 #64691.png.import new file mode 100644 index 0000000..37c924f --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_5 #64691.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsvpjqp6bfgfh" +path="res://.godot/imported/Pinguino_outline_5 #64691.png-f87d197dd4f7d80b2e818d26d369159b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_5 #64691.png" +dest_files=["res://.godot/imported/Pinguino_outline_5 #64691.png-f87d197dd4f7d80b2e818d26d369159b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pinguino_outline_5.png b/extracted/Sprite/Pinguino_outline_5.png new file mode 100644 index 0000000..47b9d18 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3891519eda56e5446aa0ab561c7a35b38ce159b1aae34f65c453e05115eb80ac +size 5251 diff --git a/extracted/Sprite/Pinguino_outline_5.png.import b/extracted/Sprite/Pinguino_outline_5.png.import new file mode 100644 index 0000000..d9f47d0 --- /dev/null +++ b/extracted/Sprite/Pinguino_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp1axl7aifcua" +path="res://.godot/imported/Pinguino_outline_5.png-9f38cc52418883c11b350c5d8188a808.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pinguino_outline_5.png" +dest_files=["res://.godot/imported/Pinguino_outline_5.png-9f38cc52418883c11b350c5d8188a808.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pirate Hat Sticker.png b/extracted/Sprite/Pirate Hat Sticker.png new file mode 100644 index 0000000..79c69af --- /dev/null +++ b/extracted/Sprite/Pirate Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810ed793930b27df3ae8fbbfe9eb05b06c3e2ba0335856a84bc340ab06c3c76c +size 55866 diff --git a/extracted/Sprite/Pirate Hat Sticker.png.import b/extracted/Sprite/Pirate Hat Sticker.png.import new file mode 100644 index 0000000..f9d77b9 --- /dev/null +++ b/extracted/Sprite/Pirate Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctrcdi0lpirwf" +path="res://.godot/imported/Pirate Hat Sticker.png-24ba60565259bbda954e104ace020311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pirate Hat Sticker.png" +dest_files=["res://.godot/imported/Pirate Hat Sticker.png-24ba60565259bbda954e104ace020311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Pirate cloth Sticker.png b/extracted/Sprite/Pirate cloth Sticker.png new file mode 100644 index 0000000..c3c0ba3 --- /dev/null +++ b/extracted/Sprite/Pirate cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e358676ef7c95b5db9b2b7c4e540b5edd68cd4cfb32ddb391c1e5834e2159bf5 +size 44815 diff --git a/extracted/Sprite/Pirate cloth Sticker.png.import b/extracted/Sprite/Pirate cloth Sticker.png.import new file mode 100644 index 0000000..b5e7100 --- /dev/null +++ b/extracted/Sprite/Pirate cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://85fno0o3lo8k" +path="res://.godot/imported/Pirate cloth Sticker.png-2e7f5bb7fad8789f44675d44160de0b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Pirate cloth Sticker.png" +dest_files=["res://.godot/imported/Pirate cloth Sticker.png-2e7f5bb7fad8789f44675d44160de0b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Racoon_Trophy_outline.png b/extracted/Sprite/Racoon_Trophy_outline.png new file mode 100644 index 0000000..fd34bf3 --- /dev/null +++ b/extracted/Sprite/Racoon_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719149a95dc76e069ea1ac82ded2f7e22d5910e8eeb24c4312348fad0b365997 +size 71920 diff --git a/extracted/Sprite/Racoon_Trophy_outline.png.import b/extracted/Sprite/Racoon_Trophy_outline.png.import new file mode 100644 index 0000000..1ca0d5c --- /dev/null +++ b/extracted/Sprite/Racoon_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drtg6hvuoae6t" +path="res://.godot/imported/Racoon_Trophy_outline.png-87474169d3abe5dfc95dff59804c3f9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Racoon_Trophy_outline.png" +dest_files=["res://.godot/imported/Racoon_Trophy_outline.png-87474169d3abe5dfc95dff59804c3f9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Ribbon Hat Sticker.png b/extracted/Sprite/Ribbon Hat Sticker.png new file mode 100644 index 0000000..369e600 --- /dev/null +++ b/extracted/Sprite/Ribbon Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a278075812589ddb3f402ebe10a73ce8d70c0204a2e7218288414618ec2d1a0b +size 41051 diff --git a/extracted/Sprite/Ribbon Hat Sticker.png.import b/extracted/Sprite/Ribbon Hat Sticker.png.import new file mode 100644 index 0000000..e4e8cf3 --- /dev/null +++ b/extracted/Sprite/Ribbon Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0ppesur8m4i5" +path="res://.godot/imported/Ribbon Hat Sticker.png-a16bf005719e2b07373d9949b8ac877c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Ribbon Hat Sticker.png" +dest_files=["res://.godot/imported/Ribbon Hat Sticker.png-a16bf005719e2b07373d9949b8ac877c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Sant Hat Sticker.png b/extracted/Sprite/Sant Hat Sticker.png new file mode 100644 index 0000000..dcde7f3 --- /dev/null +++ b/extracted/Sprite/Sant Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b43c426dcef68fd72765642176ad4b8e8d74f5df64d3b1a66ef77459b74de83 +size 44653 diff --git a/extracted/Sprite/Sant Hat Sticker.png.import b/extracted/Sprite/Sant Hat Sticker.png.import new file mode 100644 index 0000000..b5a88d5 --- /dev/null +++ b/extracted/Sprite/Sant Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do73hq86wefj0" +path="res://.godot/imported/Sant Hat Sticker.png-90d211a984ce0967b0c56442870684ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Sant Hat Sticker.png" +dest_files=["res://.godot/imported/Sant Hat Sticker.png-90d211a984ce0967b0c56442870684ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Sant cloth Sticker.png b/extracted/Sprite/Sant cloth Sticker.png new file mode 100644 index 0000000..93a944a --- /dev/null +++ b/extracted/Sprite/Sant cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a2de13df85f2898cdb4b4f5d76ad6e7e895309933febde0783a591782f1c34 +size 43671 diff --git a/extracted/Sprite/Sant cloth Sticker.png.import b/extracted/Sprite/Sant cloth Sticker.png.import new file mode 100644 index 0000000..c6ccc07 --- /dev/null +++ b/extracted/Sprite/Sant cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duhnhwjp4yb6m" +path="res://.godot/imported/Sant cloth Sticker.png-81ef363141aaffc1687f2702d4fa4a81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Sant cloth Sticker.png" +dest_files=["res://.godot/imported/Sant cloth Sticker.png-81ef363141aaffc1687f2702d4fa4a81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Scout cloth Sticker.png b/extracted/Sprite/Scout cloth Sticker.png new file mode 100644 index 0000000..ec7dca0 --- /dev/null +++ b/extracted/Sprite/Scout cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9d20e0407dd848cfe62fd4f7cf845041ce98fce8805c0a9ff96d6fffe4385e +size 44452 diff --git a/extracted/Sprite/Scout cloth Sticker.png.import b/extracted/Sprite/Scout cloth Sticker.png.import new file mode 100644 index 0000000..f27b546 --- /dev/null +++ b/extracted/Sprite/Scout cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blxa2spkweuio" +path="res://.godot/imported/Scout cloth Sticker.png-5e031c310471900aae944812340c6e88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Scout cloth Sticker.png" +dest_files=["res://.godot/imported/Scout cloth Sticker.png-5e031c310471900aae944812340c6e88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_0.png b/extracted/Sprite/SimpleWater_All_01_SPRT_0.png new file mode 100644 index 0000000..7f95b46 --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9371899932d19a32d3877b3fad146cab1e32e2c75af15f7ab77097cb922b84 +size 77235 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_0.png.import b/extracted/Sprite/SimpleWater_All_01_SPRT_0.png.import new file mode 100644 index 0000000..798122e --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qda8eh88v7hl" +path="res://.godot/imported/SimpleWater_All_01_SPRT_0.png-11415e42a3be27700ada947b2568cf66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/SimpleWater_All_01_SPRT_0.png" +dest_files=["res://.godot/imported/SimpleWater_All_01_SPRT_0.png-11415e42a3be27700ada947b2568cf66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_1.png b/extracted/Sprite/SimpleWater_All_01_SPRT_1.png new file mode 100644 index 0000000..1294ce6 --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5c1901894adcaf5d410135e9f03179942f49526b593a76a756d638e31f399e +size 36976 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_1.png.import b/extracted/Sprite/SimpleWater_All_01_SPRT_1.png.import new file mode 100644 index 0000000..69c7cac --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r3r86drv0cck" +path="res://.godot/imported/SimpleWater_All_01_SPRT_1.png-83d1c8ce47516159ba25e85d61543415.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/SimpleWater_All_01_SPRT_1.png" +dest_files=["res://.godot/imported/SimpleWater_All_01_SPRT_1.png-83d1c8ce47516159ba25e85d61543415.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_2.png b/extracted/Sprite/SimpleWater_All_01_SPRT_2.png new file mode 100644 index 0000000..f744282 --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b656206045b3a616a092def47d836f8b5996ca50c6e0ee5f20a866792a0105 +size 30695 diff --git a/extracted/Sprite/SimpleWater_All_01_SPRT_2.png.import b/extracted/Sprite/SimpleWater_All_01_SPRT_2.png.import new file mode 100644 index 0000000..ca215ce --- /dev/null +++ b/extracted/Sprite/SimpleWater_All_01_SPRT_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brixtm0v7d21a" +path="res://.godot/imported/SimpleWater_All_01_SPRT_2.png-4b9a323962d950f2831ef47f8cbcc8e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/SimpleWater_All_01_SPRT_2.png" +dest_files=["res://.godot/imported/SimpleWater_All_01_SPRT_2.png-4b9a323962d950f2831ef47f8cbcc8e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Sticker_Album_0.png b/extracted/Sprite/Sticker_Album_0.png new file mode 100644 index 0000000..6917785 --- /dev/null +++ b/extracted/Sprite/Sticker_Album_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1f018b5930cf00da4dd7f6f52acc55e7c34a9014dcf4d05e60299d798504f8 +size 5677 diff --git a/extracted/Sprite/Sticker_Album_0.png.import b/extracted/Sprite/Sticker_Album_0.png.import new file mode 100644 index 0000000..0b62496 --- /dev/null +++ b/extracted/Sprite/Sticker_Album_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgsb16ygh7c8n" +path="res://.godot/imported/Sticker_Album_0.png-992a406503b99f45417ea283067d0198.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Sticker_Album_0.png" +dest_files=["res://.godot/imported/Sticker_Album_0.png-992a406503b99f45417ea283067d0198.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Sticker_Album_1.png b/extracted/Sprite/Sticker_Album_1.png new file mode 100644 index 0000000..8664ed1 --- /dev/null +++ b/extracted/Sprite/Sticker_Album_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5567939f37d5511c65500e25eaf8030c0f1e4d09f7cba85a378609b76188a698 +size 13822 diff --git a/extracted/Sprite/Sticker_Album_1.png.import b/extracted/Sprite/Sticker_Album_1.png.import new file mode 100644 index 0000000..4071af9 --- /dev/null +++ b/extracted/Sprite/Sticker_Album_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5xhbpa8sud08" +path="res://.godot/imported/Sticker_Album_1.png-b4de539db7695d15951f42b657d7e41d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Sticker_Album_1.png" +dest_files=["res://.godot/imported/Sticker_Album_1.png-b4de539db7695d15951f42b657d7e41d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Tenis Hat Sticker.png b/extracted/Sprite/Tenis Hat Sticker.png new file mode 100644 index 0000000..a196013 --- /dev/null +++ b/extracted/Sprite/Tenis Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecb9f5436956163a51372c9aa005cb9b22b72cba866c170eecc76129d2c12cc +size 42144 diff --git a/extracted/Sprite/Tenis Hat Sticker.png.import b/extracted/Sprite/Tenis Hat Sticker.png.import new file mode 100644 index 0000000..b6beff1 --- /dev/null +++ b/extracted/Sprite/Tenis Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8y66e1c3w8gw" +path="res://.godot/imported/Tenis Hat Sticker.png-6c2b4921f21378e9d8666929b9f3517c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Tenis Hat Sticker.png" +dest_files=["res://.godot/imported/Tenis Hat Sticker.png-6c2b4921f21378e9d8666929b9f3517c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Tenis cloth Sticker.png b/extracted/Sprite/Tenis cloth Sticker.png new file mode 100644 index 0000000..5ef1103 --- /dev/null +++ b/extracted/Sprite/Tenis cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daddd1b6a47dad4433fca8c709ff0dd02479b4ea8498281c34455ad6037a1c8a +size 41132 diff --git a/extracted/Sprite/Tenis cloth Sticker.png.import b/extracted/Sprite/Tenis cloth Sticker.png.import new file mode 100644 index 0000000..e8996f7 --- /dev/null +++ b/extracted/Sprite/Tenis cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfar4y0ov1udf" +path="res://.godot/imported/Tenis cloth Sticker.png-0564ecd460e14ba5738d354e11583d77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Tenis cloth Sticker.png" +dest_files=["res://.godot/imported/Tenis cloth Sticker.png-0564ecd460e14ba5738d354e11583d77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Trader assets Cloth box.png b/extracted/Sprite/Trader assets Cloth box.png new file mode 100644 index 0000000..1999b10 --- /dev/null +++ b/extracted/Sprite/Trader assets Cloth box.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba561efdff10f7802b7b6831de13b2fdb0228fceeef5d4fcb9715309450e6b08 +size 24999 diff --git a/extracted/Sprite/Trader assets Cloth box.png.import b/extracted/Sprite/Trader assets Cloth box.png.import new file mode 100644 index 0000000..5e2b6d4 --- /dev/null +++ b/extracted/Sprite/Trader assets Cloth box.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6w1g7iaehxa2" +path="res://.godot/imported/Trader assets Cloth box.png-541e317f13ca7e941bb981c531398c4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Trader assets Cloth box.png" +dest_files=["res://.godot/imported/Trader assets Cloth box.png-541e317f13ca7e941bb981c531398c4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Trader assets Cloth hang.png b/extracted/Sprite/Trader assets Cloth hang.png new file mode 100644 index 0000000..5aae84f --- /dev/null +++ b/extracted/Sprite/Trader assets Cloth hang.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039e3a063415ca2f91446328e9e6ed11e22ccb7cd6a2e03da7f0856b7d5a76d4 +size 25946 diff --git a/extracted/Sprite/Trader assets Cloth hang.png.import b/extracted/Sprite/Trader assets Cloth hang.png.import new file mode 100644 index 0000000..6a408c8 --- /dev/null +++ b/extracted/Sprite/Trader assets Cloth hang.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs8ednvsy0fq3" +path="res://.godot/imported/Trader assets Cloth hang.png-8332123ba19119b61a390aebb9ac2ca7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Trader assets Cloth hang.png" +dest_files=["res://.godot/imported/Trader assets Cloth hang.png-8332123ba19119b61a390aebb9ac2ca7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Vampire cloth Sticker.png b/extracted/Sprite/Vampire cloth Sticker.png new file mode 100644 index 0000000..a4e5550 --- /dev/null +++ b/extracted/Sprite/Vampire cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881e4eadf90f9e897542ed60db48bbf9d12f3d55e98fde9b03ca49f672c9d936 +size 54509 diff --git a/extracted/Sprite/Vampire cloth Sticker.png.import b/extracted/Sprite/Vampire cloth Sticker.png.import new file mode 100644 index 0000000..0be21d0 --- /dev/null +++ b/extracted/Sprite/Vampire cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc2rxkye5p0g1" +path="res://.godot/imported/Vampire cloth Sticker.png-3c9a33307ec024b1244dc8179605bdcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Vampire cloth Sticker.png" +dest_files=["res://.godot/imported/Vampire cloth Sticker.png-3c9a33307ec024b1244dc8179605bdcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_0.png b/extracted/Sprite/Voodoo_doll_Outline_0.png new file mode 100644 index 0000000..384999f --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb5ffe569a98819004fe5c58c95f41c158e01f01c0b0155baf0cb1ac1be8486 +size 29685 diff --git a/extracted/Sprite/Voodoo_doll_Outline_0.png.import b/extracted/Sprite/Voodoo_doll_Outline_0.png.import new file mode 100644 index 0000000..563ee6a --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl1ediaawqqjs" +path="res://.godot/imported/Voodoo_doll_Outline_0.png-c55bcd6707b7b590c9b8cd1ab3aa84c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_0.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_0.png-c55bcd6707b7b590c9b8cd1ab3aa84c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_1.png b/extracted/Sprite/Voodoo_doll_Outline_1.png new file mode 100644 index 0000000..d566d20 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9909a8e619d4f78643ae0e0c95aebec36109b5d5d612f20dbfa9bccee58ca49b +size 9752 diff --git a/extracted/Sprite/Voodoo_doll_Outline_1.png.import b/extracted/Sprite/Voodoo_doll_Outline_1.png.import new file mode 100644 index 0000000..b7e9813 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyhvud6pfjvtb" +path="res://.godot/imported/Voodoo_doll_Outline_1.png-78b5c516d643fa678a5955d8b68ccf31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_1.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_1.png-78b5c516d643fa678a5955d8b68ccf31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_2.png b/extracted/Sprite/Voodoo_doll_Outline_2.png new file mode 100644 index 0000000..ad6424b --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbde084c4066ce2d1f2d904def83cded1f1f0ae33355b7263bb8d3d98607841 +size 6988 diff --git a/extracted/Sprite/Voodoo_doll_Outline_2.png.import b/extracted/Sprite/Voodoo_doll_Outline_2.png.import new file mode 100644 index 0000000..e4b1af7 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct14kdddjnkx4" +path="res://.godot/imported/Voodoo_doll_Outline_2.png-992cb02195bf947a1d3812798e676955.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_2.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_2.png-992cb02195bf947a1d3812798e676955.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_3.png b/extracted/Sprite/Voodoo_doll_Outline_3.png new file mode 100644 index 0000000..be63716 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7968db0686e6328f1ff2041e3d7d3215deb8a81e563845a76a1b04e4aa7863c3 +size 5421 diff --git a/extracted/Sprite/Voodoo_doll_Outline_3.png.import b/extracted/Sprite/Voodoo_doll_Outline_3.png.import new file mode 100644 index 0000000..5837397 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1unhfiwgtha8" +path="res://.godot/imported/Voodoo_doll_Outline_3.png-f68217d01aaadf55df2dedc888371885.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_3.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_3.png-f68217d01aaadf55df2dedc888371885.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_4.png b/extracted/Sprite/Voodoo_doll_Outline_4.png new file mode 100644 index 0000000..da141a7 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b0549a20c6a8c60cc21eecdd3835afc77c50b21d4eabd17d1c8e4818b13794 +size 17399 diff --git a/extracted/Sprite/Voodoo_doll_Outline_4.png.import b/extracted/Sprite/Voodoo_doll_Outline_4.png.import new file mode 100644 index 0000000..14d7097 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4eroh6cb2see" +path="res://.godot/imported/Voodoo_doll_Outline_4.png-905cdd472729787e40293742c5efc8b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_4.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_4.png-905cdd472729787e40293742c5efc8b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Voodoo_doll_Outline_5.png b/extracted/Sprite/Voodoo_doll_Outline_5.png new file mode 100644 index 0000000..5717285 --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe451b0d0c714632fc378cb60d899e538fda1efa9f03cac4639b0063a50f7579 +size 3870 diff --git a/extracted/Sprite/Voodoo_doll_Outline_5.png.import b/extracted/Sprite/Voodoo_doll_Outline_5.png.import new file mode 100644 index 0000000..a7141ae --- /dev/null +++ b/extracted/Sprite/Voodoo_doll_Outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sfe5n0j7eouh" +path="res://.godot/imported/Voodoo_doll_Outline_5.png-04d4b0fb1e5922f83bf12c4a44220454.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Voodoo_doll_Outline_5.png" +dest_files=["res://.godot/imported/Voodoo_doll_Outline_5.png-04d4b0fb1e5922f83bf12c4a44220454.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Well_Trophy_outline.png b/extracted/Sprite/Well_Trophy_outline.png new file mode 100644 index 0000000..0d3a097 --- /dev/null +++ b/extracted/Sprite/Well_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5205e9b437eec6321393d35702e56ef5946068c74784d3bba372c25efcfc4eee +size 74684 diff --git a/extracted/Sprite/Well_Trophy_outline.png.import b/extracted/Sprite/Well_Trophy_outline.png.import new file mode 100644 index 0000000..8f6604a --- /dev/null +++ b/extracted/Sprite/Well_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bypn3d0eyqtyy" +path="res://.godot/imported/Well_Trophy_outline.png-24dd48edcbb1a91e510c9acd4af5b31a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Well_Trophy_outline.png" +dest_files=["res://.godot/imported/Well_Trophy_outline.png-24dd48edcbb1a91e510c9acd4af5b31a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Wes Cloth Sticker.png b/extracted/Sprite/Wes Cloth Sticker.png new file mode 100644 index 0000000..2e60072 --- /dev/null +++ b/extracted/Sprite/Wes Cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79826e8129e4dadc9da3b7e64dae7fb66738c859705e2edd2a367bd5b2aab288 +size 38178 diff --git a/extracted/Sprite/Wes Cloth Sticker.png.import b/extracted/Sprite/Wes Cloth Sticker.png.import new file mode 100644 index 0000000..282f254 --- /dev/null +++ b/extracted/Sprite/Wes Cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq8j5qo7s40rj" +path="res://.godot/imported/Wes Cloth Sticker.png-e6ac1f7f5a038fb6b0fe98500a7a8cc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Wes Cloth Sticker.png" +dest_files=["res://.godot/imported/Wes Cloth Sticker.png-e6ac1f7f5a038fb6b0fe98500a7a8cc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Witch Hat Sticker.png b/extracted/Sprite/Witch Hat Sticker.png new file mode 100644 index 0000000..ee64b6f --- /dev/null +++ b/extracted/Sprite/Witch Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d2e7624627cf3fa00f527c63739b940353c1d8ed0f78182edf8f31875cb4ab +size 47052 diff --git a/extracted/Sprite/Witch Hat Sticker.png.import b/extracted/Sprite/Witch Hat Sticker.png.import new file mode 100644 index 0000000..7024ad7 --- /dev/null +++ b/extracted/Sprite/Witch Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w5idpef4go2a" +path="res://.godot/imported/Witch Hat Sticker.png-c37018259ebc5e8b5026bed69c56b929.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Witch Hat Sticker.png" +dest_files=["res://.godot/imported/Witch Hat Sticker.png-c37018259ebc5e8b5026bed69c56b929.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/Witch cloth Sticker.png b/extracted/Sprite/Witch cloth Sticker.png new file mode 100644 index 0000000..b63983c --- /dev/null +++ b/extracted/Sprite/Witch cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1853aaff09618f40de87ce5b15c20d86ed7d8f82a32e2a17915170e80c36063e +size 38196 diff --git a/extracted/Sprite/Witch cloth Sticker.png.import b/extracted/Sprite/Witch cloth Sticker.png.import new file mode 100644 index 0000000..19dc1d0 --- /dev/null +++ b/extracted/Sprite/Witch cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddohjxvuwa8we" +path="res://.godot/imported/Witch cloth Sticker.png-61db33b0d911441da8a5b5b4e9644d31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/Witch cloth Sticker.png" +dest_files=["res://.godot/imported/Witch cloth Sticker.png-61db33b0d911441da8a5b5b4e9644d31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_0 #63586.png b/extracted/Sprite/char_Alchemyst_outline_0 #63586.png new file mode 100644 index 0000000..9d4c927 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_0 #63586.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74602c4e9313517a0a9acb4d0a2e1a8d2066db0d60734b1f4d1be2af193d1b87 +size 39370 diff --git a/extracted/Sprite/char_Alchemyst_outline_0 #63586.png.import b/extracted/Sprite/char_Alchemyst_outline_0 #63586.png.import new file mode 100644 index 0000000..d5c2392 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_0 #63586.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf8oh74t1k6qt" +path="res://.godot/imported/char_Alchemyst_outline_0 #63586.png-dbb965aca98f9a013f93f46380f220dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_0 #63586.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_0 #63586.png-dbb965aca98f9a013f93f46380f220dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_0.png b/extracted/Sprite/char_Alchemyst_outline_0.png new file mode 100644 index 0000000..6c75a27 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b2c6b1fe6c1be74ea5e465e8b14c858260a3084215871ebd02c0fbfbcf147f +size 30039 diff --git a/extracted/Sprite/char_Alchemyst_outline_0.png.import b/extracted/Sprite/char_Alchemyst_outline_0.png.import new file mode 100644 index 0000000..17dd65b --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccn8fl7lh8w7y" +path="res://.godot/imported/char_Alchemyst_outline_0.png-67cf51d80d45d22453c96f80277c36e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_0.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_0.png-67cf51d80d45d22453c96f80277c36e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_1 #64522.png b/extracted/Sprite/char_Alchemyst_outline_1 #64522.png new file mode 100644 index 0000000..ad2ba37 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_1 #64522.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cde2baa65f3cbe65d600122c7ed47cc0aa04d4fa69c3dfa325e16f1776ce5a3 +size 13772 diff --git a/extracted/Sprite/char_Alchemyst_outline_1 #64522.png.import b/extracted/Sprite/char_Alchemyst_outline_1 #64522.png.import new file mode 100644 index 0000000..64f358a --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_1 #64522.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcjl1fveevpvx" +path="res://.godot/imported/char_Alchemyst_outline_1 #64522.png-a0fa650a0344d0879dbf16079a46edb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_1 #64522.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_1 #64522.png-a0fa650a0344d0879dbf16079a46edb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_1.png b/extracted/Sprite/char_Alchemyst_outline_1.png new file mode 100644 index 0000000..c6f5064 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5742b3e545824a7901c734651ed1127d88bf7de0fa5b7ebd8fc76195348911 +size 17611 diff --git a/extracted/Sprite/char_Alchemyst_outline_1.png.import b/extracted/Sprite/char_Alchemyst_outline_1.png.import new file mode 100644 index 0000000..9f515da --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crwfnqwqj5sv8" +path="res://.godot/imported/char_Alchemyst_outline_1.png-2fa78b5e30b4fccbbbbe803619d7cf38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_1.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_1.png-2fa78b5e30b4fccbbbbe803619d7cf38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_2 #64591.png b/extracted/Sprite/char_Alchemyst_outline_2 #64591.png new file mode 100644 index 0000000..32af0df --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_2 #64591.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8e832e966d520ab39660858e5b11ec61444fb043c4b24a1b2b4b4f42691758 +size 34577 diff --git a/extracted/Sprite/char_Alchemyst_outline_2 #64591.png.import b/extracted/Sprite/char_Alchemyst_outline_2 #64591.png.import new file mode 100644 index 0000000..eea340c --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_2 #64591.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xor6meljpkt8" +path="res://.godot/imported/char_Alchemyst_outline_2 #64591.png-085f095186a8ba8c269f546a40345679.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_2 #64591.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_2 #64591.png-085f095186a8ba8c269f546a40345679.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_2.png b/extracted/Sprite/char_Alchemyst_outline_2.png new file mode 100644 index 0000000..54fe163 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a771b7fb1c89880c908ef94d52f658360b72a59a12ab2fc4c96574d2a38ec3 +size 43644 diff --git a/extracted/Sprite/char_Alchemyst_outline_2.png.import b/extracted/Sprite/char_Alchemyst_outline_2.png.import new file mode 100644 index 0000000..6bfad8a --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chv41wl5ecfpw" +path="res://.godot/imported/char_Alchemyst_outline_2.png-2b0d58d171631d4efc1791db0e9665c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_2.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_2.png-2b0d58d171631d4efc1791db0e9665c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_3 #64342.png b/extracted/Sprite/char_Alchemyst_outline_3 #64342.png new file mode 100644 index 0000000..f22ecc7 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_3 #64342.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698a4ef764fff8f694a534b8d2dc743a1fe8e1d93df7ef966fc007e92ec6df5c +size 4806 diff --git a/extracted/Sprite/char_Alchemyst_outline_3 #64342.png.import b/extracted/Sprite/char_Alchemyst_outline_3 #64342.png.import new file mode 100644 index 0000000..1eb0b4e --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_3 #64342.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pj5n40i7fc0t" +path="res://.godot/imported/char_Alchemyst_outline_3 #64342.png-03e33b91537e0531ef0b4d4150c8399f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_3 #64342.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_3 #64342.png-03e33b91537e0531ef0b4d4150c8399f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_3.png b/extracted/Sprite/char_Alchemyst_outline_3.png new file mode 100644 index 0000000..6eb3146 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8433ca1258818196eb1a6c99061f6da5356f8a768ea5353a0f817fbe6d04df5c +size 2762 diff --git a/extracted/Sprite/char_Alchemyst_outline_3.png.import b/extracted/Sprite/char_Alchemyst_outline_3.png.import new file mode 100644 index 0000000..4359c9c --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciihumap1j726" +path="res://.godot/imported/char_Alchemyst_outline_3.png-e77cc39a57f7c8050e42a74152597f54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_3.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_3.png-e77cc39a57f7c8050e42a74152597f54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_4 #64631.png b/extracted/Sprite/char_Alchemyst_outline_4 #64631.png new file mode 100644 index 0000000..322afcd --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_4 #64631.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03f5cf0c7fcab146343e66c11499386f9227dca27c25f622e2999c8bd54af53 +size 19400 diff --git a/extracted/Sprite/char_Alchemyst_outline_4 #64631.png.import b/extracted/Sprite/char_Alchemyst_outline_4 #64631.png.import new file mode 100644 index 0000000..6e7f4ec --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_4 #64631.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dptqihfemv746" +path="res://.godot/imported/char_Alchemyst_outline_4 #64631.png-3ce2d17a83d8eb7e27f9e9e73381e787.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_4 #64631.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_4 #64631.png-3ce2d17a83d8eb7e27f9e9e73381e787.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_4.png b/extracted/Sprite/char_Alchemyst_outline_4.png new file mode 100644 index 0000000..c6e3a65 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13da53abc70eb05c63659c438f016b1bcb7309ec6f50ee747c9134d7a290ee8b +size 22896 diff --git a/extracted/Sprite/char_Alchemyst_outline_4.png.import b/extracted/Sprite/char_Alchemyst_outline_4.png.import new file mode 100644 index 0000000..c91414a --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2my47vn7oy4x" +path="res://.godot/imported/char_Alchemyst_outline_4.png-fd1bdd378af0870d5f140c8a10015f85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_4.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_4.png-fd1bdd378af0870d5f140c8a10015f85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_5 #64669.png b/extracted/Sprite/char_Alchemyst_outline_5 #64669.png new file mode 100644 index 0000000..7010930 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_5 #64669.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9097a4e93f7e2b2409c752f5e281d9a558e7f59771ba3ce72a403c7284f275b +size 5721 diff --git a/extracted/Sprite/char_Alchemyst_outline_5 #64669.png.import b/extracted/Sprite/char_Alchemyst_outline_5 #64669.png.import new file mode 100644 index 0000000..77a2ef3 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_5 #64669.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dolnc8hdd17a2" +path="res://.godot/imported/char_Alchemyst_outline_5 #64669.png-6c668a7971be0603656d61c9de150794.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_5 #64669.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_5 #64669.png-6c668a7971be0603656d61c9de150794.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_5.png b/extracted/Sprite/char_Alchemyst_outline_5.png new file mode 100644 index 0000000..aa8a1f4 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb980cc3648a954188955edb77766c571388d2fe2c99f8d88fc7d4c652d880e +size 8802 diff --git a/extracted/Sprite/char_Alchemyst_outline_5.png.import b/extracted/Sprite/char_Alchemyst_outline_5.png.import new file mode 100644 index 0000000..dac59c8 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jgp2k41ki0sv" +path="res://.godot/imported/char_Alchemyst_outline_5.png-b0d663131e378f3d853b3b746ea92abd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_5.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_5.png-b0d663131e378f3d853b3b746ea92abd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_6 #64554.png b/extracted/Sprite/char_Alchemyst_outline_6 #64554.png new file mode 100644 index 0000000..35ceb2c --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_6 #64554.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee802e9cedb8ec7f7825350db868b405e436ba8a8829571ab8bd19db242a35cb +size 8406 diff --git a/extracted/Sprite/char_Alchemyst_outline_6 #64554.png.import b/extracted/Sprite/char_Alchemyst_outline_6 #64554.png.import new file mode 100644 index 0000000..d237ea1 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_6 #64554.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqbyhpaxtjs22" +path="res://.godot/imported/char_Alchemyst_outline_6 #64554.png-1256006ca480fd42884a40226ff39d5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_6 #64554.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_6 #64554.png-1256006ca480fd42884a40226ff39d5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Alchemyst_outline_6.png b/extracted/Sprite/char_Alchemyst_outline_6.png new file mode 100644 index 0000000..f034715 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728465f2f95fd7d1e820bdb443c5b969a2537d698a1bd61996932583a588daf0 +size 11643 diff --git a/extracted/Sprite/char_Alchemyst_outline_6.png.import b/extracted/Sprite/char_Alchemyst_outline_6.png.import new file mode 100644 index 0000000..c827e65 --- /dev/null +++ b/extracted/Sprite/char_Alchemyst_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2r237pg15y2m" +path="res://.godot/imported/char_Alchemyst_outline_6.png-2fc6a3a9d3cedf4e93675a6a9d3849d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Alchemyst_outline_6.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline_6.png-2fc6a3a9d3cedf4e93675a6a9d3849d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png b/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png new file mode 100644 index 0000000..cc15157 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a3ecc9ba96a3c9e03363e853f2882dc1ea6fdb8b0c0865e5ae66e08c09044c +size 48227 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png.import new file mode 100644 index 0000000..97670d4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ke8nwgy7x11" +path="res://.godot/imported/char_Backer_Axolotl_outline_0 #64662.png-30b613be354836df898d1d58b67ab747.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_0 #64662.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_0 #64662.png-30b613be354836df898d1d58b67ab747.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_0.png b/extracted/Sprite/char_Backer_Axolotl_outline_0.png new file mode 100644 index 0000000..09aba54 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1f1bb88e14efe14b649cffbd70b2727b3cef4651e6493d9763922d44bd9308 +size 59539 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_0.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_0.png.import new file mode 100644 index 0000000..8bab571 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3a7ttuqkeneh" +path="res://.godot/imported/char_Backer_Axolotl_outline_0.png-94be49d6ab7c31d37975a1b339066dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_0.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_0.png-94be49d6ab7c31d37975a1b339066dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png b/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png new file mode 100644 index 0000000..51d2cb4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ca565a77a69632e0e780496ab3803840dc7eb55ebf6b9841f6fe410f0b0e24 +size 14866 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png.import new file mode 100644 index 0000000..4a288cf --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cog15c3ccepp2" +path="res://.godot/imported/char_Backer_Axolotl_outline_1 #64562.png-067a80d41873c8ecc57ebd6d411f6d59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_1 #64562.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_1 #64562.png-067a80d41873c8ecc57ebd6d411f6d59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_1.png b/extracted/Sprite/char_Backer_Axolotl_outline_1.png new file mode 100644 index 0000000..c774d00 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5751c45162a0f9d748eb7246b61d770a6983106694f3cab6301fb0cd0da0a497 +size 18860 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_1.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_1.png.import new file mode 100644 index 0000000..db94b20 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvik55yaqjsoh" +path="res://.godot/imported/char_Backer_Axolotl_outline_1.png-f790ed92365f1c64e9a0acfe41b20901.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_1.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_1.png-f790ed92365f1c64e9a0acfe41b20901.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png b/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png new file mode 100644 index 0000000..7ae54d4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d89bfdb37038fe9c8c8bf8afc9e639fd314c4d7c09abcb9841418745c0ef2e +size 50942 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png.import new file mode 100644 index 0000000..ceca16e --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh1cv2sg52pvy" +path="res://.godot/imported/char_Backer_Axolotl_outline_2 #64560.png-5618d526799f04b8f44cbf35b65fccf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_2 #64560.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_2 #64560.png-5618d526799f04b8f44cbf35b65fccf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_2.png b/extracted/Sprite/char_Backer_Axolotl_outline_2.png new file mode 100644 index 0000000..0d03439 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d1e24cbdf27f2678f693c1e1f299fc09ca37069cc27bc761ea73f01cd42aea +size 62175 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_2.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_2.png.import new file mode 100644 index 0000000..e88cb2a --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb5tm3oxt1isw" +path="res://.godot/imported/char_Backer_Axolotl_outline_2.png-80914379f53646e7c6430b4eee812237.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_2.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_2.png-80914379f53646e7c6430b4eee812237.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png b/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png new file mode 100644 index 0000000..58a3650 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1244182ba4e518a32c531ac701f84b36287c238a74fc151225f052e4dd569ca +size 11498 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png.import new file mode 100644 index 0000000..a925dc4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqo4gyqu1w22h" +path="res://.godot/imported/char_Backer_Axolotl_outline_3 #64528.png-958ffbdc70a2c9728966bdc883c1c1be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_3 #64528.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_3 #64528.png-958ffbdc70a2c9728966bdc883c1c1be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_3.png b/extracted/Sprite/char_Backer_Axolotl_outline_3.png new file mode 100644 index 0000000..b868026 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9b4d79c3cef76e63b568cb8bc0a8a8a7c773b5c53afab4f43b1be19c1f349b +size 15712 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_3.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_3.png.import new file mode 100644 index 0000000..5deff2b --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fa3j6xe8gow4" +path="res://.godot/imported/char_Backer_Axolotl_outline_3.png-3d48590f821f7aa7bbb141bc9270f5fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_3.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_3.png-3d48590f821f7aa7bbb141bc9270f5fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png b/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png new file mode 100644 index 0000000..3a92e9a --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e9ab7585057ea9e934d15037de172498e406e8ce9330dd8d2d19e7ee50c0bc4 +size 3421 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png.import new file mode 100644 index 0000000..68e49a8 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chujuhs4akn22" +path="res://.godot/imported/char_Backer_Axolotl_outline_4 #64527.png-b7d32ef617ff56e690601a40a80fd948.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_4 #64527.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_4 #64527.png-b7d32ef617ff56e690601a40a80fd948.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_4.png b/extracted/Sprite/char_Backer_Axolotl_outline_4.png new file mode 100644 index 0000000..464baac --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1661f6676ddbc042c5763abe70145652ff7656bab4e73fbefbb0c08396ece3a +size 5792 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_4.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_4.png.import new file mode 100644 index 0000000..f174a1b --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djh2tjhn5qswy" +path="res://.godot/imported/char_Backer_Axolotl_outline_4.png-b68184d0fe2d7e78f197ed201d63c560.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_4.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_4.png-b68184d0fe2d7e78f197ed201d63c560.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png b/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png new file mode 100644 index 0000000..20d2318 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f02e6e2ffc2fc5a5724ddf25981412c1ce83252a5dfacac6f371a7c7ffd27a3 +size 2719 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png.import new file mode 100644 index 0000000..854fb4e --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp43m8kaf6w6l" +path="res://.godot/imported/char_Backer_Axolotl_outline_5 #64681.png-2959e6213f69d8ddb15bf034c95ba3c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_5 #64681.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_5 #64681.png-2959e6213f69d8ddb15bf034c95ba3c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_5.png b/extracted/Sprite/char_Backer_Axolotl_outline_5.png new file mode 100644 index 0000000..e6e0cc9 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0db6eb9cd204840a0130febd282c0738c0b3d1d61135f551a925cf6530eb601 +size 4653 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_5.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_5.png.import new file mode 100644 index 0000000..1887082 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l0jauc6h4sfb" +path="res://.godot/imported/char_Backer_Axolotl_outline_5.png-6664a4b49bb4398a3a6809dfd42610e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_5.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_5.png-6664a4b49bb4398a3a6809dfd42610e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png b/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png new file mode 100644 index 0000000..f576292 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44523a55dadbf93095e7aa3204640119595e169484e41735adbd7fc815ec654 +size 14245 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png.import new file mode 100644 index 0000000..ed3c640 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bka6peal8at62" +path="res://.godot/imported/char_Backer_Axolotl_outline_6 #63653.png-53bd0690e24886d0782bbc6f01b41186.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_6 #63653.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_6 #63653.png-53bd0690e24886d0782bbc6f01b41186.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_6.png b/extracted/Sprite/char_Backer_Axolotl_outline_6.png new file mode 100644 index 0000000..e862a67 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9940451e724915c3bf485cd490ccfc423eb9bdf2dcfca1f56205fb7154e9c5f +size 10333 diff --git a/extracted/Sprite/char_Backer_Axolotl_outline_6.png.import b/extracted/Sprite/char_Backer_Axolotl_outline_6.png.import new file mode 100644 index 0000000..7fa8895 --- /dev/null +++ b/extracted/Sprite/char_Backer_Axolotl_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i3rgsb0em0ch" +path="res://.godot/imported/char_Backer_Axolotl_outline_6.png-2c79bbd911f84aeef9aab80a2993677f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Axolotl_outline_6.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline_6.png-2c79bbd911f84aeef9aab80a2993677f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png b/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png new file mode 100644 index 0000000..a35b0f7 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290a1ce3f36eb1e6ebf05069d9663e907a004d64280a980c9bfdf6f1a16bf33d +size 43873 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png.import b/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png.import new file mode 100644 index 0000000..05e5511 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxo7i8mmoully" +path="res://.godot/imported/char_Backer_Cerval_outline_0 #64559.png-2bce40cc4893f9105c4ef93c7e5d9dce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_0 #64559.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_0 #64559.png-2bce40cc4893f9105c4ef93c7e5d9dce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_0.png b/extracted/Sprite/char_Backer_Cerval_outline_0.png new file mode 100644 index 0000000..0144e35 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f730cd547f3f853791e7087580e2a571983326b7397e6c12734f38e6b30c5f0 +size 51116 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_0.png.import b/extracted/Sprite/char_Backer_Cerval_outline_0.png.import new file mode 100644 index 0000000..4d3a45a --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch613rfylftp" +path="res://.godot/imported/char_Backer_Cerval_outline_0.png-7719bb866c26b2f7b66520d7b0c45667.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_0.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_0.png-7719bb866c26b2f7b66520d7b0c45667.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png b/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png new file mode 100644 index 0000000..6098ef2 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ba090c56fa1066919e75e5f7be605ab7c55e917480d49d5009a0a841d8a2cd +size 3457 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png.import b/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png.import new file mode 100644 index 0000000..6e664c1 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyviww57ak71a" +path="res://.godot/imported/char_Backer_Cerval_outline_1 #64613.png-05b53776ddada4f9b48b1676d7e67bf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_1 #64613.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_1 #64613.png-05b53776ddada4f9b48b1676d7e67bf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_1.png b/extracted/Sprite/char_Backer_Cerval_outline_1.png new file mode 100644 index 0000000..a1896cb --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd1259e859d5bf0d910fce69df3f8fd297a4dc5515095a5de7de128bc47ace2 +size 5487 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_1.png.import b/extracted/Sprite/char_Backer_Cerval_outline_1.png.import new file mode 100644 index 0000000..ed8c2b4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6vj2kpoldkmm" +path="res://.godot/imported/char_Backer_Cerval_outline_1.png-15e42da852982deb9c56feb5a60a931d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_1.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_1.png-15e42da852982deb9c56feb5a60a931d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png b/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png new file mode 100644 index 0000000..92d4e94 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead8f0871552e81f9550b2f5e6a5af1d81a1aff4c5eb7f958ad624a267a238aa +size 10504 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png.import b/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png.import new file mode 100644 index 0000000..acce40d --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmjsyrj7gdngs" +path="res://.godot/imported/char_Backer_Cerval_outline_2 #64603.png-8756418f258dfa202864a00974c34af4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_2 #64603.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_2 #64603.png-8756418f258dfa202864a00974c34af4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_2.png b/extracted/Sprite/char_Backer_Cerval_outline_2.png new file mode 100644 index 0000000..276e033 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7855eb102c54d8da8614195d20e9ca2939624fa37302f36341c8f4d90bafb1d8 +size 15107 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_2.png.import b/extracted/Sprite/char_Backer_Cerval_outline_2.png.import new file mode 100644 index 0000000..ee3b637 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7p55csa031yt" +path="res://.godot/imported/char_Backer_Cerval_outline_2.png-431ff7a54356530f502318167c78c39e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_2.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_2.png-431ff7a54356530f502318167c78c39e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png b/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png new file mode 100644 index 0000000..43ecd2d --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ecdfa24255b800cff51f48a74bd34fd9a7520a0942d03551070fad7089a534c +size 49393 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png.import b/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png.import new file mode 100644 index 0000000..c8faf5a --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0al4td1sghfq" +path="res://.godot/imported/char_Backer_Cerval_outline_3 #63566.png-c5f8914a515790eea4e7b04b52e9b7fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_3 #63566.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_3 #63566.png-c5f8914a515790eea4e7b04b52e9b7fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_3.png b/extracted/Sprite/char_Backer_Cerval_outline_3.png new file mode 100644 index 0000000..b90f46a --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd5277fa8e4af3e777b5afb3edc6b690d02718024bb3af9b7e45f7f3550e09e +size 41795 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_3.png.import b/extracted/Sprite/char_Backer_Cerval_outline_3.png.import new file mode 100644 index 0000000..a14f428 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjifikd45b3hc" +path="res://.godot/imported/char_Backer_Cerval_outline_3.png-9e9a69607cf67b7737170152e70c2a6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_3.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_3.png-9e9a69607cf67b7737170152e70c2a6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png b/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png new file mode 100644 index 0000000..1fcfdba --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6529eb0300ce0b705cce77c5bdad702455384a7163770eb6a12f09b781d8b93d +size 20982 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png.import b/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png.import new file mode 100644 index 0000000..e989d2b --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://juw0glh5nblm" +path="res://.godot/imported/char_Backer_Cerval_outline_4 #63695.png-cc6c51f57382c802d08f7acecffa30de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_4 #63695.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_4 #63695.png-cc6c51f57382c802d08f7acecffa30de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_4.png b/extracted/Sprite/char_Backer_Cerval_outline_4.png new file mode 100644 index 0000000..ec19903 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0326ef8d04b41a81bbf68556abf44976f6c5737073d1f776bc365b4095cedd79 +size 16981 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_4.png.import b/extracted/Sprite/char_Backer_Cerval_outline_4.png.import new file mode 100644 index 0000000..4b4df64 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgjvjxjqhnhe1" +path="res://.godot/imported/char_Backer_Cerval_outline_4.png-ed5eab6da6d19a3284663b85fa6ec340.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_4.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_4.png-ed5eab6da6d19a3284663b85fa6ec340.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png b/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png new file mode 100644 index 0000000..3e8adf6 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1905f91697aeb723248abd8a4ea56fc1f1e1ce1b42cf859d7e67d692c119831 +size 4316 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png.import b/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png.import new file mode 100644 index 0000000..e40786a --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnpkbceqhk5fb" +path="res://.godot/imported/char_Backer_Cerval_outline_5 #64597.png-0e3d54c47dcdac5a0baa9d63944e9486.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_5 #64597.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_5 #64597.png-0e3d54c47dcdac5a0baa9d63944e9486.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_5.png b/extracted/Sprite/char_Backer_Cerval_outline_5.png new file mode 100644 index 0000000..3f1dba1 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f911707dc08b714721a23e0dbfd7d72466b10406e18a4da0a4989b530a4a0814 +size 6833 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_5.png.import b/extracted/Sprite/char_Backer_Cerval_outline_5.png.import new file mode 100644 index 0000000..068fac7 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b61t47dujmip2" +path="res://.godot/imported/char_Backer_Cerval_outline_5.png-35c766d8540300ca3a6d866bb82d2478.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_5.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_5.png-35c766d8540300ca3a6d866bb82d2478.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png b/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png new file mode 100644 index 0000000..561a90c --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efad6965fec9e900f4f28c3504e7b03b1c647e924df7d217d350310b167137e6 +size 7235 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png.import b/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png.import new file mode 100644 index 0000000..fb65975 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgjmd4h67f3ff" +path="res://.godot/imported/char_Backer_Cerval_outline_6 #64686.png-b9ab32efd6023246e339ebc569c4aaff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_6 #64686.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_6 #64686.png-b9ab32efd6023246e339ebc569c4aaff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_6.png b/extracted/Sprite/char_Backer_Cerval_outline_6.png new file mode 100644 index 0000000..eddaf3f --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dac31de05e0e17fd2782094781b9d2d289bbe803d85fc4e7711c2b6e4ca29c7 +size 10420 diff --git a/extracted/Sprite/char_Backer_Cerval_outline_6.png.import b/extracted/Sprite/char_Backer_Cerval_outline_6.png.import new file mode 100644 index 0000000..30e0c76 --- /dev/null +++ b/extracted/Sprite/char_Backer_Cerval_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfeg4lx3vk3jl" +path="res://.godot/imported/char_Backer_Cerval_outline_6.png-171dff43e3705bfece497ff283c901ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Cerval_outline_6.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline_6.png-171dff43e3705bfece497ff283c901ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png b/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png new file mode 100644 index 0000000..7add3cf --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c1ed80bce185132b6af004d14b571ae819e3d05d7a74b07bfea04fb8a8b189 +size 37666 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png.import new file mode 100644 index 0000000..3fb7bc1 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mxyg7qbfme4d" +path="res://.godot/imported/char_Backer_Chinchilla_outline_0 #64668.png-e34ce4bceff674ca07b85fd99567ee74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_0 #64668.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_0 #64668.png-e34ce4bceff674ca07b85fd99567ee74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_0.png b/extracted/Sprite/char_Backer_Chinchilla_outline_0.png new file mode 100644 index 0000000..77cee03 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7e645e692f975a05e6c420d5f62850e5f13b6d78e8105d46b3f4c8059f644e +size 45815 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_0.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_0.png.import new file mode 100644 index 0000000..b4b9c8e --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gmhhfc3i5n7d" +path="res://.godot/imported/char_Backer_Chinchilla_outline_0.png-e45a69bb83bd26cc4ef4892adf4bbc4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_0.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_0.png-e45a69bb83bd26cc4ef4892adf4bbc4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png b/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png new file mode 100644 index 0000000..429831d --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b7dc6794516087d455e4587b98af6ee5ebda4e644d4abc398b70675ae3c05b +size 24539 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png.import new file mode 100644 index 0000000..177b2d0 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bndj13xe3a46f" +path="res://.godot/imported/char_Backer_Chinchilla_outline_1 #64685.png-5aa9f6a9bc9c5d6102f4a36638ff03f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_1 #64685.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_1 #64685.png-5aa9f6a9bc9c5d6102f4a36638ff03f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_1.png b/extracted/Sprite/char_Backer_Chinchilla_outline_1.png new file mode 100644 index 0000000..b560849 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3214c1ca2f19af762acffeafbc123b43c87235f4eeb4035e7dbcf75ed6a0096d +size 29170 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_1.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_1.png.import new file mode 100644 index 0000000..13f6686 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0lt1750j578f" +path="res://.godot/imported/char_Backer_Chinchilla_outline_1.png-833aa9496111211f88b0553cdaa48010.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_1.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_1.png-833aa9496111211f88b0553cdaa48010.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png b/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png new file mode 100644 index 0000000..c7d5b31 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8309f3debe9cd834ff6bfb8b4aabc2de974cdf7de525349ea16498e301ce9a +size 6212 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png.import new file mode 100644 index 0000000..e6bb826 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dljgq3t6hnoly" +path="res://.godot/imported/char_Backer_Chinchilla_outline_2 #63612.png-6ab5aa50a94cc9c0f30192e52a2e91ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_2 #63612.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_2 #63612.png-6ab5aa50a94cc9c0f30192e52a2e91ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_2.png b/extracted/Sprite/char_Backer_Chinchilla_outline_2.png new file mode 100644 index 0000000..9f0c6a4 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5600f6597726a44b03e3b1bcd88bac242abbb46931b6336b97981140a5f20932 +size 3966 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_2.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_2.png.import new file mode 100644 index 0000000..e18c657 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyqemfqxeoo0f" +path="res://.godot/imported/char_Backer_Chinchilla_outline_2.png-416dcd537a6d912bd4b92073f630c8cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_2.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_2.png-416dcd537a6d912bd4b92073f630c8cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png b/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png new file mode 100644 index 0000000..7b31404 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fffc6ba5830cf8e7bc59f20d0e7a69713e1e9158099986ceed2cd55f92a0fe8 +size 51601 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png.import new file mode 100644 index 0000000..2702261 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxbj13tbgptsr" +path="res://.godot/imported/char_Backer_Chinchilla_outline_3 #64385.png-907936011122c0916d33e57eb59571ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_3 #64385.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_3 #64385.png-907936011122c0916d33e57eb59571ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_3.png b/extracted/Sprite/char_Backer_Chinchilla_outline_3.png new file mode 100644 index 0000000..bc0bab5 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc7a64b2a127830fa198fb1d8b44213691ef0006a8f551532a3e8eeae7f40e2 +size 44026 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_3.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_3.png.import new file mode 100644 index 0000000..e4ecbd8 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr01cvdfwqjx7" +path="res://.godot/imported/char_Backer_Chinchilla_outline_3.png-c74f202728455320f275e3553ae09181.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_3.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_3.png-c74f202728455320f275e3553ae09181.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png b/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png new file mode 100644 index 0000000..4dd0427 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0076bae73840fdfe21dff00f3ea9c4af0ff39380db878bb7ab80cacda30f9f3 +size 18718 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png.import new file mode 100644 index 0000000..7be87cc --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt1jrf28ivq8a" +path="res://.godot/imported/char_Backer_Chinchilla_outline_4 #63613.png-d451fed0977d30f5c502b33a224e5d77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_4 #63613.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_4 #63613.png-d451fed0977d30f5c502b33a224e5d77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_4.png b/extracted/Sprite/char_Backer_Chinchilla_outline_4.png new file mode 100644 index 0000000..2cb2b2a --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3229e671dc9f9677daf72343eeb532fc7ec4e5f0f9f406d961e072f514d29cc +size 13851 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_4.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_4.png.import new file mode 100644 index 0000000..857affb --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2auejpudttl2" +path="res://.godot/imported/char_Backer_Chinchilla_outline_4.png-314a813e300516f977a40939face93fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_4.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_4.png-314a813e300516f977a40939face93fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png b/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png new file mode 100644 index 0000000..3562aa9 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4d08ff738658a3c4653de9f7f5f44488d61cb5544230987cf5e30b14104b6f +size 3921 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png.import new file mode 100644 index 0000000..9b43dff --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baqa42opnqssg" +path="res://.godot/imported/char_Backer_Chinchilla_outline_5 #64667.png-05873be014156b7db664750000312565.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_5 #64667.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_5 #64667.png-05873be014156b7db664750000312565.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_5.png b/extracted/Sprite/char_Backer_Chinchilla_outline_5.png new file mode 100644 index 0000000..9204e9e --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde86cd579a92b171bf347713f1841abde290a0bcc8185005013a9ccf7ef7dff +size 6053 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_5.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_5.png.import new file mode 100644 index 0000000..42fdf19 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq43rn56n3gv1" +path="res://.godot/imported/char_Backer_Chinchilla_outline_5.png-3dbbd7f5c39d221ecca0ee38a71d8a04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_5.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_5.png-3dbbd7f5c39d221ecca0ee38a71d8a04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png b/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png new file mode 100644 index 0000000..b561e8c --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3f1a045aca1568281b5dacb2c40c71b6444eece9f808940ef16e22b05765b3 +size 23756 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png.import new file mode 100644 index 0000000..206cddb --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfd7ccg5we4wj" +path="res://.godot/imported/char_Backer_Chinchilla_outline_6 #64523.png-1437b6c66ce285d5d81394eb23013871.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_6 #64523.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_6 #64523.png-1437b6c66ce285d5d81394eb23013871.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_6.png b/extracted/Sprite/char_Backer_Chinchilla_outline_6.png new file mode 100644 index 0000000..ffb6e15 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2704f4cf5f12be26d15db0e77c3237b9e0cb757a27f1949c55c205470b2c86f8 +size 29754 diff --git a/extracted/Sprite/char_Backer_Chinchilla_outline_6.png.import b/extracted/Sprite/char_Backer_Chinchilla_outline_6.png.import new file mode 100644 index 0000000..79963c5 --- /dev/null +++ b/extracted/Sprite/char_Backer_Chinchilla_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5j3k7fybecip" +path="res://.godot/imported/char_Backer_Chinchilla_outline_6.png-5418b912145533250a0d3684d103a08e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Chinchilla_outline_6.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline_6.png-5418b912145533250a0d3684d103a08e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png b/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png new file mode 100644 index 0000000..08f5bb7 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf13988b0915b23660a19fb3fa616982d926e5a9341e60863dacbca7d2264f9 +size 63720 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png.import b/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png.import new file mode 100644 index 0000000..0167037 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbou5jfpgc6tp" +path="res://.godot/imported/char_Backer_Manatee_outline_0 #63551.png-95fe1e719c48ba91c2053cb572d4519b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_0 #63551.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_0 #63551.png-95fe1e719c48ba91c2053cb572d4519b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_0.png b/extracted/Sprite/char_Backer_Manatee_outline_0.png new file mode 100644 index 0000000..a89c9c8 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6d16206327ecb224b65cd6a11bb029d0c46bc7612b2d26d94a1f7e8ffdf56f +size 55476 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_0.png.import b/extracted/Sprite/char_Backer_Manatee_outline_0.png.import new file mode 100644 index 0000000..27e82c8 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2omvflixct88" +path="res://.godot/imported/char_Backer_Manatee_outline_0.png-f770d71b1522cbc32219401c8e973417.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_0.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_0.png-f770d71b1522cbc32219401c8e973417.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png b/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png new file mode 100644 index 0000000..1790747 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5538d379d774a22b9d679157be9807484d0307db78f55466ebcbf94f4fb7851 +size 6239 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png.import b/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png.import new file mode 100644 index 0000000..6b5593b --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bllrygc0lddwj" +path="res://.godot/imported/char_Backer_Manatee_outline_1 #64324.png-85b8b8cabab2df1262ad29deb84e09a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_1 #64324.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_1 #64324.png-85b8b8cabab2df1262ad29deb84e09a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_1.png b/extracted/Sprite/char_Backer_Manatee_outline_1.png new file mode 100644 index 0000000..132287c --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0ad34d9172b2c81bf92079d438e603c9ef78f144485c4330cd876754eac0b8 +size 3911 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_1.png.import b/extracted/Sprite/char_Backer_Manatee_outline_1.png.import new file mode 100644 index 0000000..cb2ee40 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh2n3p78dt6s3" +path="res://.godot/imported/char_Backer_Manatee_outline_1.png-9f627c5f533271562bd9488d75456acb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_1.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_1.png-9f627c5f533271562bd9488d75456acb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png b/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png new file mode 100644 index 0000000..184e0c2 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22121aaa43aaacbe405c8b29cf8a0bfa9a5b5a8c13e7505831527200adc012f9 +size 11945 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png.import b/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png.import new file mode 100644 index 0000000..48594cd --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf4ablm0mcx8g" +path="res://.godot/imported/char_Backer_Manatee_outline_2 #64264.png-c4d3f148b61d4e32df66898280752df8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_2 #64264.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_2 #64264.png-c4d3f148b61d4e32df66898280752df8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_2.png b/extracted/Sprite/char_Backer_Manatee_outline_2.png new file mode 100644 index 0000000..7d644e8 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c16be0a9d7ceb6ebdcbec1713eb9a6c8ef38d8e2c10aab234050a1fd664414e +size 8331 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_2.png.import b/extracted/Sprite/char_Backer_Manatee_outline_2.png.import new file mode 100644 index 0000000..1d24426 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csrmklf7lvc2n" +path="res://.godot/imported/char_Backer_Manatee_outline_2.png-0a771eaeec07168be8ec2b769ce31344.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_2.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_2.png-0a771eaeec07168be8ec2b769ce31344.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png b/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png new file mode 100644 index 0000000..4050436 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9f665803b6465c5039c5d11d656d162071c26b15c2b9115edd96480958ac5d +size 7573 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png.import b/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png.import new file mode 100644 index 0000000..60d273d --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qno0fw257ge0" +path="res://.godot/imported/char_Backer_Manatee_outline_3 #63765.png-e62b0e4e7ecf11dac77afb537ef4c156.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_3 #63765.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_3 #63765.png-e62b0e4e7ecf11dac77afb537ef4c156.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_3.png b/extracted/Sprite/char_Backer_Manatee_outline_3.png new file mode 100644 index 0000000..0f2feee --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0812b0834af76f683a07a21893987591877e60add0cb63e6c6274adbdd3ff24e +size 5159 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_3.png.import b/extracted/Sprite/char_Backer_Manatee_outline_3.png.import new file mode 100644 index 0000000..a0a996f --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b70fkannb47v3" +path="res://.godot/imported/char_Backer_Manatee_outline_3.png-c0b24cf99613854f75f05a67bb0e9ded.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_3.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_3.png-c0b24cf99613854f75f05a67bb0e9ded.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png b/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png new file mode 100644 index 0000000..d10f2a7 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7375bf2415ebe4a5553964c5e152c0731ef75b79931909f63b399f3199a14754 +size 53043 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png.import b/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png.import new file mode 100644 index 0000000..6500717 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hs4o5eh31lso" +path="res://.godot/imported/char_Backer_Manatee_outline_4 #63580.png-60eceed2de0224f8f4a83b948987cbb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_4 #63580.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_4 #63580.png-60eceed2de0224f8f4a83b948987cbb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_4.png b/extracted/Sprite/char_Backer_Manatee_outline_4.png new file mode 100644 index 0000000..445affc --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b61cc75c99434cacd4e6baa76e86099856b78db27d1349a7aeae750fdb2555 +size 45366 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_4.png.import b/extracted/Sprite/char_Backer_Manatee_outline_4.png.import new file mode 100644 index 0000000..773d704 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp8k4dre3nfr7" +path="res://.godot/imported/char_Backer_Manatee_outline_4.png-41d9b54e09ccd0ed7cda599f45e93bca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_4.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_4.png-41d9b54e09ccd0ed7cda599f45e93bca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png b/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png new file mode 100644 index 0000000..6ef7adf --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7bdcb806f3e7150baf98b72bffdd10c970b6a13393d7d5fab40dc2b1f675bd +size 33607 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png.import b/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png.import new file mode 100644 index 0000000..beddb7b --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bynnseek000oo" +path="res://.godot/imported/char_Backer_Manatee_outline_5 #64444.png-352ad0092d903e46bf9e2613515b94d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_5 #64444.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_5 #64444.png-352ad0092d903e46bf9e2613515b94d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_5.png b/extracted/Sprite/char_Backer_Manatee_outline_5.png new file mode 100644 index 0000000..a1c02e3 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5388151dfc196fe155ee9350bc094367a1747107a4cd9d205e9bf455ad2f964 +size 28030 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_5.png.import b/extracted/Sprite/char_Backer_Manatee_outline_5.png.import new file mode 100644 index 0000000..7ff6184 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu0qxkwhum7m3" +path="res://.godot/imported/char_Backer_Manatee_outline_5.png-966bcd75c3b735fcbaf23b1d547cdd01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_5.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_5.png-966bcd75c3b735fcbaf23b1d547cdd01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png b/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png new file mode 100644 index 0000000..0648c1a --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba45e56c59a17c9f17bd488e907f3b78a8fc8a9e4d1c56be6e905e0f73aa1fe +size 39564 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png.import b/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png.import new file mode 100644 index 0000000..63c6031 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0rfgxmkq0krh" +path="res://.godot/imported/char_Backer_Manatee_outline_6 #63656.png-41368cbf0818058c3ac785a67954561d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_6 #63656.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_6 #63656.png-41368cbf0818058c3ac785a67954561d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_6.png b/extracted/Sprite/char_Backer_Manatee_outline_6.png new file mode 100644 index 0000000..4dbc076 --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11462d73e448e1db156587785f6a6f77602773ed74d241dd62efe1314cdcc1c4 +size 34898 diff --git a/extracted/Sprite/char_Backer_Manatee_outline_6.png.import b/extracted/Sprite/char_Backer_Manatee_outline_6.png.import new file mode 100644 index 0000000..c87dc1b --- /dev/null +++ b/extracted/Sprite/char_Backer_Manatee_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmbh3qj08slw1" +path="res://.godot/imported/char_Backer_Manatee_outline_6.png-9a8566550cd0acc3637b24034411006e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Backer_Manatee_outline_6.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline_6.png-9a8566550cd0acc3637b24034411006e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png b/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png new file mode 100644 index 0000000..b7161c6 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e559f3e1c39a7f372fc851320d7bc054f3c57d08c87e57f295f62777f8d8b6 +size 46060 diff --git a/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png.import b/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png.import new file mode 100644 index 0000000..16a8553 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_0 #63565.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhp6obti2y7ux" +path="res://.godot/imported/char_Brotherhood1_outline_0 #63565.png-edae660deaa8ebf0d05718d5bcef7fb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_0 #63565.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_0 #63565.png-edae660deaa8ebf0d05718d5bcef7fb2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_0.png b/extracted/Sprite/char_Brotherhood1_outline_0.png new file mode 100644 index 0000000..69d65ea --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c669aa45bc3290b82bddceccab93e862cc206133ebccf660879950c40204a06f +size 39228 diff --git a/extracted/Sprite/char_Brotherhood1_outline_0.png.import b/extracted/Sprite/char_Brotherhood1_outline_0.png.import new file mode 100644 index 0000000..4c6c4e1 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nitssy4qdxnu" +path="res://.godot/imported/char_Brotherhood1_outline_0.png-e0d698c81a9cd636d48ab86e36fb0c3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_0.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_0.png-e0d698c81a9cd636d48ab86e36fb0c3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png b/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png new file mode 100644 index 0000000..ab41528 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72390ad2a69aae5005ac70c5cdfe1f84dbb3c97b9900f197ca095809df9d6274 +size 23756 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png.import b/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png.import new file mode 100644 index 0000000..1604cf6 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #63325.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yf1ax6v87hhj" +path="res://.godot/imported/char_Brotherhood1_outline_1 #63325.png-8d1c6f2ff18eb66cb300bdc887a16400.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_1 #63325.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_1 #63325.png-8d1c6f2ff18eb66cb300bdc887a16400.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png b/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png new file mode 100644 index 0000000..09df28c --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f9bd2afd39ca90244c70c779569351028909b92af744acfe90f56ea1e48dd5 +size 22479 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png.import b/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png.import new file mode 100644 index 0000000..2bb6b25 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #63326.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlafyqn8w6m3" +path="res://.godot/imported/char_Brotherhood1_outline_1 #63326.png-06fd54b0af674ecf9f9ec1d843f156f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_1 #63326.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_1 #63326.png-06fd54b0af674ecf9f9ec1d843f156f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png b/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png new file mode 100644 index 0000000..c4aefee --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11836256d00053cf8bc1d19c8becb8327f29bb15bf1a7f51378a19af0f216088 +size 27044 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png.import b/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png.import new file mode 100644 index 0000000..8f257e2 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1 #64337.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://carmv068yorcg" +path="res://.godot/imported/char_Brotherhood1_outline_1 #64337.png-651e80854826c0196b2254ea855a9000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_1 #64337.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_1 #64337.png-651e80854826c0196b2254ea855a9000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1.png b/extracted/Sprite/char_Brotherhood1_outline_1.png new file mode 100644 index 0000000..3387902 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a1361bba82ea3cb7ecb9c5dbed02b9abcbbdda91240d7a10eafb654f9531ad +size 20947 diff --git a/extracted/Sprite/char_Brotherhood1_outline_1.png.import b/extracted/Sprite/char_Brotherhood1_outline_1.png.import new file mode 100644 index 0000000..2e95632 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxnptwv76bjya" +path="res://.godot/imported/char_Brotherhood1_outline_1.png-5c12180ca7d6483683b985f22c4e2028.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_1.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_1.png-5c12180ca7d6483683b985f22c4e2028.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png b/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png new file mode 100644 index 0000000..4c6f2de --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec0641430fd809800c9969eccff16dbaac26eddfa5596238571434237717c3d +size 42460 diff --git a/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png.import b/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png.import new file mode 100644 index 0000000..0026ee3 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_2 #64484.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bosvr4fnol57a" +path="res://.godot/imported/char_Brotherhood1_outline_2 #64484.png-90e308403ea910e334e251a1d8822392.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_2 #64484.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_2 #64484.png-90e308403ea910e334e251a1d8822392.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_2.png b/extracted/Sprite/char_Brotherhood1_outline_2.png new file mode 100644 index 0000000..7e3c685 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a754065719ac6e34a671b0ec1dcb611f6e47e6aa36ff58097d428aafa84fe32 +size 35630 diff --git a/extracted/Sprite/char_Brotherhood1_outline_2.png.import b/extracted/Sprite/char_Brotherhood1_outline_2.png.import new file mode 100644 index 0000000..c30d956 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7srgo5dlxht4" +path="res://.godot/imported/char_Brotherhood1_outline_2.png-212e5b7067751ed3cec6f2d0fe2af481.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_2.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_2.png-212e5b7067751ed3cec6f2d0fe2af481.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png b/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png new file mode 100644 index 0000000..df76677 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be4753ebc61ac08b5b5b82b7eb1e2d915588ffa07a0e35b50e256789d1c1a0f +size 16977 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png.import b/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png.import new file mode 100644 index 0000000..ec32b96 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #63447.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://usv6usmv8jhs" +path="res://.godot/imported/char_Brotherhood1_outline_3 #63447.png-bfc923c3e988b7c6c2839825dc319ce7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_3 #63447.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_3 #63447.png-bfc923c3e988b7c6c2839825dc319ce7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png b/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png new file mode 100644 index 0000000..d132597 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ae376dc0836679e15282175ac9315b52b835c154f9c54f77676ef8a158f74f +size 16269 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png.import b/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png.import new file mode 100644 index 0000000..6405ee4 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #63448.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dif8m4lfxgtv7" +path="res://.godot/imported/char_Brotherhood1_outline_3 #63448.png-ef0a28db997246832e90657c3474538d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_3 #63448.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_3 #63448.png-ef0a28db997246832e90657c3474538d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png b/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png new file mode 100644 index 0000000..423cfde --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2245dc0023a363464bf08cc2004d5189ade8accedd3c831133e0031cf693579 +size 21036 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png.import b/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png.import new file mode 100644 index 0000000..420bf08 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3 #64307.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i2lq2jnc17kd" +path="res://.godot/imported/char_Brotherhood1_outline_3 #64307.png-9877c86be377d4ef86ee4fefdc713e20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_3 #64307.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_3 #64307.png-9877c86be377d4ef86ee4fefdc713e20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3.png b/extracted/Sprite/char_Brotherhood1_outline_3.png new file mode 100644 index 0000000..6219104 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2b3ed96cbef1b20a5d5bf9f001f96e2f633c0a220c95ea2056d0dad7fbebc6 +size 14952 diff --git a/extracted/Sprite/char_Brotherhood1_outline_3.png.import b/extracted/Sprite/char_Brotherhood1_outline_3.png.import new file mode 100644 index 0000000..4a28efd --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hdtn5h5pd87q" +path="res://.godot/imported/char_Brotherhood1_outline_3.png-e50921b799a26571d327ea454b85cf11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_3.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_3.png-e50921b799a26571d327ea454b85cf11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png b/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png new file mode 100644 index 0000000..62c6a94 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6559893a764aa358284e73a82136bfe05fe300253e4346cf5cb8b08af11d09af +size 6076 diff --git a/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png.import b/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png.import new file mode 100644 index 0000000..b86edcb --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_4 #64362.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fx1ngrcklvh7" +path="res://.godot/imported/char_Brotherhood1_outline_4 #64362.png-3d026e6ee57abf727548bb640dd7fa34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_4 #64362.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_4 #64362.png-3d026e6ee57abf727548bb640dd7fa34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_4.png b/extracted/Sprite/char_Brotherhood1_outline_4.png new file mode 100644 index 0000000..cd15403 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abaada113fb693422f9da00d8bb0ac914ca734286d9224f33948151fd450c279 +size 4514 diff --git a/extracted/Sprite/char_Brotherhood1_outline_4.png.import b/extracted/Sprite/char_Brotherhood1_outline_4.png.import new file mode 100644 index 0000000..d4032d0 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk653jvid3633" +path="res://.godot/imported/char_Brotherhood1_outline_4.png-e41515ca5e9c7eebe2cf0b167e421459.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_4.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_4.png-e41515ca5e9c7eebe2cf0b167e421459.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png b/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png new file mode 100644 index 0000000..d56ae40 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7375cbfe53f40de36da32232605f1c2d7e7b9dd67d10b76be2e5fe4e932107a4 +size 6164 diff --git a/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png.import b/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png.import new file mode 100644 index 0000000..740e9a9 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_5 #64447.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pr6kaco171hq" +path="res://.godot/imported/char_Brotherhood1_outline_5 #64447.png-85206be2a2d97051afd6a14e45391612.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_5 #64447.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_5 #64447.png-85206be2a2d97051afd6a14e45391612.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_5.png b/extracted/Sprite/char_Brotherhood1_outline_5.png new file mode 100644 index 0000000..54f5843 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c15325b51ca1831b2ad4caacbfa809628dd9d7338a1023a75caa695201b552f +size 3756 diff --git a/extracted/Sprite/char_Brotherhood1_outline_5.png.import b/extracted/Sprite/char_Brotherhood1_outline_5.png.import new file mode 100644 index 0000000..14d701e --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceg2u8dlxi1vq" +path="res://.godot/imported/char_Brotherhood1_outline_5.png-824d9c67f70d86fc48dcbba9ac61a3ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_5.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_5.png-824d9c67f70d86fc48dcbba9ac61a3ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png b/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png new file mode 100644 index 0000000..ce12bd2 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30fe86bee15cb5e813baa9fbdeb3be3dd668d78435de91b296a6eaa462fcc327 +size 13061 diff --git a/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png.import b/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png.import new file mode 100644 index 0000000..20f82ac --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_6 #64277.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq3lsw68frhwr" +path="res://.godot/imported/char_Brotherhood1_outline_6 #64277.png-0775856f283b3282222325eb07cbc76d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_6 #64277.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_6 #64277.png-0775856f283b3282222325eb07cbc76d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood1_outline_6.png b/extracted/Sprite/char_Brotherhood1_outline_6.png new file mode 100644 index 0000000..6e88f18 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5664d646bc8a18906ccdd5f42c81467e3109d949d2e443bde592971ad798a5 +size 9823 diff --git a/extracted/Sprite/char_Brotherhood1_outline_6.png.import b/extracted/Sprite/char_Brotherhood1_outline_6.png.import new file mode 100644 index 0000000..b38f9b7 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood1_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4go51aajddhr" +path="res://.godot/imported/char_Brotherhood1_outline_6.png-ce61167c7dd818d4edbb853471801dc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood1_outline_6.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline_6.png-ce61167c7dd818d4edbb853471801dc3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png b/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png new file mode 100644 index 0000000..c83bcf3 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9afd903abfc478664d404342d0692695ab6e543a336da4a12a23eec2a39a76 +size 35804 diff --git a/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png.import b/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png.import new file mode 100644 index 0000000..ba5281c --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_0 #64546.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkermqqhinff" +path="res://.godot/imported/char_Brotherhood2_outline_0 #64546.png-f5993ec52ab36e0f1d70c385c610c910.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_0 #64546.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_0 #64546.png-f5993ec52ab36e0f1d70c385c610c910.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_0.png b/extracted/Sprite/char_Brotherhood2_outline_0.png new file mode 100644 index 0000000..a58b7c4 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3055ae1da3bc5303f38d391e227c3a1edcfac5b34bc5b1889150e57a73d46d3 +size 41363 diff --git a/extracted/Sprite/char_Brotherhood2_outline_0.png.import b/extracted/Sprite/char_Brotherhood2_outline_0.png.import new file mode 100644 index 0000000..262c961 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csfc3v8va3or4" +path="res://.godot/imported/char_Brotherhood2_outline_0.png-baa51a7ba8f61ae144f7f70c5346108c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_0.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_0.png-baa51a7ba8f61ae144f7f70c5346108c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png b/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png new file mode 100644 index 0000000..314f6d9 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d98e61b1f6c944e4284159b8e6f89170ab2f64b1290750de9fc1aaaf206f77 +size 27391 diff --git a/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png.import b/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png.import new file mode 100644 index 0000000..d5b53ea --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_2 #64687.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtojrlqcwff56" +path="res://.godot/imported/char_Brotherhood2_outline_2 #64687.png-7fa53ab357b0ff49e2c1df7842a6e35c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_2 #64687.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_2 #64687.png-7fa53ab357b0ff49e2c1df7842a6e35c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_2.png b/extracted/Sprite/char_Brotherhood2_outline_2.png new file mode 100644 index 0000000..7324d20 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3548498002a990981dae449174e9482ebad69efb5244fafc383c25155a2700a +size 33521 diff --git a/extracted/Sprite/char_Brotherhood2_outline_2.png.import b/extracted/Sprite/char_Brotherhood2_outline_2.png.import new file mode 100644 index 0000000..d18cc2b --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ydqg0ey1j3gm" +path="res://.godot/imported/char_Brotherhood2_outline_2.png-4b267d15d5d76c35369c692d7bc031ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_2.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_2.png-4b267d15d5d76c35369c692d7bc031ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png b/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png new file mode 100644 index 0000000..eab9f62 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ad543ffd64e504e4b05156100d48949aa5be3b324b201cb290328f23b092d0 +size 6474 diff --git a/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png.import b/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png.import new file mode 100644 index 0000000..341f858 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_4 #63675.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f6evabmr6oby" +path="res://.godot/imported/char_Brotherhood2_outline_4 #63675.png-c2115b27826b93b8a6ea0bd5df424f54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_4 #63675.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_4 #63675.png-c2115b27826b93b8a6ea0bd5df424f54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_4.png b/extracted/Sprite/char_Brotherhood2_outline_4.png new file mode 100644 index 0000000..5212ca5 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ea7ad2ccdca74a98a31759b4a3d54bf666b0958a5d79c80f05153b7276abe1 +size 4096 diff --git a/extracted/Sprite/char_Brotherhood2_outline_4.png.import b/extracted/Sprite/char_Brotherhood2_outline_4.png.import new file mode 100644 index 0000000..7582ad1 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk5pgfkjhaq38" +path="res://.godot/imported/char_Brotherhood2_outline_4.png-b48606a7054f26812934873181b1c73a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_4.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_4.png-b48606a7054f26812934873181b1c73a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png b/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png new file mode 100644 index 0000000..84ac3e6 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b35c435f36954e0438d6a4c6d4204a4c1ca0aba8114c25b198afd43d6ce13 +size 11857 diff --git a/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png.import b/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png.import new file mode 100644 index 0000000..89e3838 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_6 #64476.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvvdfp14nn6s8" +path="res://.godot/imported/char_Brotherhood2_outline_6 #64476.png-f1db833c111747d08264c892b2da6477.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_6 #64476.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_6 #64476.png-f1db833c111747d08264c892b2da6477.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Brotherhood2_outline_6.png b/extracted/Sprite/char_Brotherhood2_outline_6.png new file mode 100644 index 0000000..77ee675 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0850f1463385638fa0ce9c7381d5f0f1878854567b11267e99623b34b3e726 +size 8898 diff --git a/extracted/Sprite/char_Brotherhood2_outline_6.png.import b/extracted/Sprite/char_Brotherhood2_outline_6.png.import new file mode 100644 index 0000000..eda5ae3 --- /dev/null +++ b/extracted/Sprite/char_Brotherhood2_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nbs0s7v5yutr" +path="res://.godot/imported/char_Brotherhood2_outline_6.png-b9ccb4e9db1fe1ca95270fcca928a1cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Brotherhood2_outline_6.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline_6.png-b9ccb4e9db1fe1ca95270fcca928a1cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Fathe_Young_outline_0.png b/extracted/Sprite/char_Fathe_Young_outline_0.png new file mode 100644 index 0000000..e5ed5bd --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16717168f7f7f93ae0add5765d0e92a0bdcb3b58448483df68b28d93f079e83d +size 44818 diff --git a/extracted/Sprite/char_Fathe_Young_outline_0.png.import b/extracted/Sprite/char_Fathe_Young_outline_0.png.import new file mode 100644 index 0000000..6b92800 --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cia2y2kwl8tca" +path="res://.godot/imported/char_Fathe_Young_outline_0.png-d7f6efb754c5ec6d037ab7d05034e037.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Fathe_Young_outline_0.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline_0.png-d7f6efb754c5ec6d037ab7d05034e037.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Fathe_Young_outline_1.png b/extracted/Sprite/char_Fathe_Young_outline_1.png new file mode 100644 index 0000000..160e57c --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db80ad6ac88c475769291eb405b73cdd6ae031abf4ad2ed148156c679304379f +size 16952 diff --git a/extracted/Sprite/char_Fathe_Young_outline_1.png.import b/extracted/Sprite/char_Fathe_Young_outline_1.png.import new file mode 100644 index 0000000..07ca2d1 --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baw2etdehnqls" +path="res://.godot/imported/char_Fathe_Young_outline_1.png-186e6b84e2ec460c94f6ed29c85709a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Fathe_Young_outline_1.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline_1.png-186e6b84e2ec460c94f6ed29c85709a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Fathe_Young_outline_2.png b/extracted/Sprite/char_Fathe_Young_outline_2.png new file mode 100644 index 0000000..2b8a69c --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2316876c37ae87fce8c8cc1238930dff3650db0e65c4d1b8eb5cd18bc09d610a +size 4308 diff --git a/extracted/Sprite/char_Fathe_Young_outline_2.png.import b/extracted/Sprite/char_Fathe_Young_outline_2.png.import new file mode 100644 index 0000000..8afd091 --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbq2mvn3welru" +path="res://.godot/imported/char_Fathe_Young_outline_2.png-1b46bcacdd1023bfd5a81c7d42a0ed03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Fathe_Young_outline_2.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline_2.png-1b46bcacdd1023bfd5a81c7d42a0ed03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Fathe_Young_outline_3.png b/extracted/Sprite/char_Fathe_Young_outline_3.png new file mode 100644 index 0000000..b50d56e --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24291700aa14e77666892e1efbce8157e0ceaa009db2c485194aa580ba3cc74 +size 3197 diff --git a/extracted/Sprite/char_Fathe_Young_outline_3.png.import b/extracted/Sprite/char_Fathe_Young_outline_3.png.import new file mode 100644 index 0000000..4329345 --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d24yvi1pbe8so" +path="res://.godot/imported/char_Fathe_Young_outline_3.png-483c0c127a8f2743d4a2c392224df71f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Fathe_Young_outline_3.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline_3.png-483c0c127a8f2743d4a2c392224df71f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Fathe_Young_outline_4.png b/extracted/Sprite/char_Fathe_Young_outline_4.png new file mode 100644 index 0000000..46d181e --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89211f249dee4d069e619519334cfe4a766bff6838424cb206bebbd32075f83f +size 4042 diff --git a/extracted/Sprite/char_Fathe_Young_outline_4.png.import b/extracted/Sprite/char_Fathe_Young_outline_4.png.import new file mode 100644 index 0000000..41a722b --- /dev/null +++ b/extracted/Sprite/char_Fathe_Young_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doyhresghu647" +path="res://.godot/imported/char_Fathe_Young_outline_4.png-3846b8c0e5f35cac1d5d70d143a702af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Fathe_Young_outline_4.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline_4.png-3846b8c0e5f35cac1d5d70d143a702af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_0 #64433.png b/extracted/Sprite/char_Father_outline_0 #64433.png new file mode 100644 index 0000000..9f325d9 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_0 #64433.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5d2b59d080fd4d742eb8d7a8a2acd8b276b835b5dd05269ed579a0eb479a68 +size 52840 diff --git a/extracted/Sprite/char_Father_outline_0 #64433.png.import b/extracted/Sprite/char_Father_outline_0 #64433.png.import new file mode 100644 index 0000000..5e5fe3d --- /dev/null +++ b/extracted/Sprite/char_Father_outline_0 #64433.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b71hhqwwljj3i" +path="res://.godot/imported/char_Father_outline_0 #64433.png-2d98db7d39ce9c4141af23d6d2414f3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_0 #64433.png" +dest_files=["res://.godot/imported/char_Father_outline_0 #64433.png-2d98db7d39ce9c4141af23d6d2414f3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_0.png b/extracted/Sprite/char_Father_outline_0.png new file mode 100644 index 0000000..506a0b7 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b798009bccc969fb722b8b3d70863153bfbdf298780fddd443bae0c0e366933d +size 42469 diff --git a/extracted/Sprite/char_Father_outline_0.png.import b/extracted/Sprite/char_Father_outline_0.png.import new file mode 100644 index 0000000..f0c6ffb --- /dev/null +++ b/extracted/Sprite/char_Father_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o5h7fvw47ypj" +path="res://.godot/imported/char_Father_outline_0.png-1df5e1c011f5aa425fd880bcac5a2177.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_0.png" +dest_files=["res://.godot/imported/char_Father_outline_0.png-1df5e1c011f5aa425fd880bcac5a2177.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_1 #64607.png b/extracted/Sprite/char_Father_outline_1 #64607.png new file mode 100644 index 0000000..ca56755 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_1 #64607.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058adbc55412fa4eedc6a69d357ce7dd33f8f70170b5c884f742665fc7c778b3 +size 2893 diff --git a/extracted/Sprite/char_Father_outline_1 #64607.png.import b/extracted/Sprite/char_Father_outline_1 #64607.png.import new file mode 100644 index 0000000..0a05293 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_1 #64607.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://10vy402f4ayd" +path="res://.godot/imported/char_Father_outline_1 #64607.png-995e575b7ecb1cd4b412ce0fc5d7234f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_1 #64607.png" +dest_files=["res://.godot/imported/char_Father_outline_1 #64607.png-995e575b7ecb1cd4b412ce0fc5d7234f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_1.png b/extracted/Sprite/char_Father_outline_1.png new file mode 100644 index 0000000..31cc911 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e188dd5202a0cd29f142210465dc763256d16746fd1f51b3b2399430321a283a +size 4835 diff --git a/extracted/Sprite/char_Father_outline_1.png.import b/extracted/Sprite/char_Father_outline_1.png.import new file mode 100644 index 0000000..22133a7 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1b2uduuwh65t" +path="res://.godot/imported/char_Father_outline_1.png-5681e0f88bf92f0e6e14798e7ec4506e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_1.png" +dest_files=["res://.godot/imported/char_Father_outline_1.png-5681e0f88bf92f0e6e14798e7ec4506e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_2 #64598.png b/extracted/Sprite/char_Father_outline_2 #64598.png new file mode 100644 index 0000000..da7dc93 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_2 #64598.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d737b1374155cbdef69877938da209945ff4f6df425b9485954303d670e7275a +size 27205 diff --git a/extracted/Sprite/char_Father_outline_2 #64598.png.import b/extracted/Sprite/char_Father_outline_2 #64598.png.import new file mode 100644 index 0000000..505b086 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_2 #64598.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpmu1886sbixr" +path="res://.godot/imported/char_Father_outline_2 #64598.png-6c04d72b91a7877756b1a75d9a953462.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_2 #64598.png" +dest_files=["res://.godot/imported/char_Father_outline_2 #64598.png-6c04d72b91a7877756b1a75d9a953462.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_2.png b/extracted/Sprite/char_Father_outline_2.png new file mode 100644 index 0000000..b919535 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2eac6919c4b211b7a46329d01ca21237fc13c808811a1c8f090270aba091a84 +size 32278 diff --git a/extracted/Sprite/char_Father_outline_2.png.import b/extracted/Sprite/char_Father_outline_2.png.import new file mode 100644 index 0000000..5e8a805 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h0ldk3066xe3" +path="res://.godot/imported/char_Father_outline_2.png-c3a865b2b160a887ba143512deceb8d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_2.png" +dest_files=["res://.godot/imported/char_Father_outline_2.png-c3a865b2b160a887ba143512deceb8d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_3 #63661.png b/extracted/Sprite/char_Father_outline_3 #63661.png new file mode 100644 index 0000000..686bf0c --- /dev/null +++ b/extracted/Sprite/char_Father_outline_3 #63661.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006e85c137b5b39978e28cd424c1efa2244dfdec536ee00a36d32cee1c1508e1 +size 25387 diff --git a/extracted/Sprite/char_Father_outline_3 #63661.png.import b/extracted/Sprite/char_Father_outline_3 #63661.png.import new file mode 100644 index 0000000..0ea4b52 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_3 #63661.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7r6iml7e82t1" +path="res://.godot/imported/char_Father_outline_3 #63661.png-ed1a7fb9a54c9570f4f9377c67abc574.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_3 #63661.png" +dest_files=["res://.godot/imported/char_Father_outline_3 #63661.png-ed1a7fb9a54c9570f4f9377c67abc574.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_3.png b/extracted/Sprite/char_Father_outline_3.png new file mode 100644 index 0000000..b48adeb --- /dev/null +++ b/extracted/Sprite/char_Father_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5be25879728edf047b9096584ceaf64b92195086a7553c52a38e659fadc2f0 +size 20127 diff --git a/extracted/Sprite/char_Father_outline_3.png.import b/extracted/Sprite/char_Father_outline_3.png.import new file mode 100644 index 0000000..b8d41be --- /dev/null +++ b/extracted/Sprite/char_Father_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d11be4q4s1t5e" +path="res://.godot/imported/char_Father_outline_3.png-7190658867a4eac136e82a94d3bbb5af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_3.png" +dest_files=["res://.godot/imported/char_Father_outline_3.png-7190658867a4eac136e82a94d3bbb5af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_4 #64409.png b/extracted/Sprite/char_Father_outline_4 #64409.png new file mode 100644 index 0000000..a5af864 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_4 #64409.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbefceede3ab1d6b9fa6d57bbfa2f35b429e430a8f2eda8fe0ee6146ea0b0b5e +size 6310 diff --git a/extracted/Sprite/char_Father_outline_4 #64409.png.import b/extracted/Sprite/char_Father_outline_4 #64409.png.import new file mode 100644 index 0000000..76886d5 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_4 #64409.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dioeckgd5d2s1" +path="res://.godot/imported/char_Father_outline_4 #64409.png-046ac6ab7a1ceeec1ae85733bc283f9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_4 #64409.png" +dest_files=["res://.godot/imported/char_Father_outline_4 #64409.png-046ac6ab7a1ceeec1ae85733bc283f9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_4.png b/extracted/Sprite/char_Father_outline_4.png new file mode 100644 index 0000000..e33f3c3 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9df63720abaca6b483cd58a956333125690fa105a9267217e38f6482e1c2582 +size 3735 diff --git a/extracted/Sprite/char_Father_outline_4.png.import b/extracted/Sprite/char_Father_outline_4.png.import new file mode 100644 index 0000000..c5002b8 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgc0n1c2a6x26" +path="res://.godot/imported/char_Father_outline_4.png-a3c3bc1ef8d49165c3c3a2d28406719c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_4.png" +dest_files=["res://.godot/imported/char_Father_outline_4.png-a3c3bc1ef8d49165c3c3a2d28406719c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_5 #64601.png b/extracted/Sprite/char_Father_outline_5 #64601.png new file mode 100644 index 0000000..dd2b0aa --- /dev/null +++ b/extracted/Sprite/char_Father_outline_5 #64601.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38299444440b5eb3d175611f587b22687e38b7161acd24ba4dd28a12424e042 +size 33108 diff --git a/extracted/Sprite/char_Father_outline_5 #64601.png.import b/extracted/Sprite/char_Father_outline_5 #64601.png.import new file mode 100644 index 0000000..73141a0 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_5 #64601.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxuv7bwaqjw56" +path="res://.godot/imported/char_Father_outline_5 #64601.png-1ac57803982216d4e786d22e4d036ce5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_5 #64601.png" +dest_files=["res://.godot/imported/char_Father_outline_5 #64601.png-1ac57803982216d4e786d22e4d036ce5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_5.png b/extracted/Sprite/char_Father_outline_5.png new file mode 100644 index 0000000..4915b45 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdeeb8c7685e04970857ba491f87ab20441181d0e09eb4abbc22e2cee14062d5 +size 43148 diff --git a/extracted/Sprite/char_Father_outline_5.png.import b/extracted/Sprite/char_Father_outline_5.png.import new file mode 100644 index 0000000..07f2b22 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b34hbjmrtwxdf" +path="res://.godot/imported/char_Father_outline_5.png-25b42fb2b6d58fb99f3fca8107a6f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_5.png" +dest_files=["res://.godot/imported/char_Father_outline_5.png-25b42fb2b6d58fb99f3fca8107a6f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_6 #63579.png b/extracted/Sprite/char_Father_outline_6 #63579.png new file mode 100644 index 0000000..88e1648 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_6 #63579.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98307e9039c3a2759446c9e2ffd35b5ab4e57dc53a899c5635aa706a5d86e102 +size 6796 diff --git a/extracted/Sprite/char_Father_outline_6 #63579.png.import b/extracted/Sprite/char_Father_outline_6 #63579.png.import new file mode 100644 index 0000000..1aceda3 --- /dev/null +++ b/extracted/Sprite/char_Father_outline_6 #63579.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djmonik3fj71k" +path="res://.godot/imported/char_Father_outline_6 #63579.png-1b7d3a67d5fa9cf4ee92f55afc872090.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_6 #63579.png" +dest_files=["res://.godot/imported/char_Father_outline_6 #63579.png-1b7d3a67d5fa9cf4ee92f55afc872090.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Father_outline_6.png b/extracted/Sprite/char_Father_outline_6.png new file mode 100644 index 0000000..0c4639e --- /dev/null +++ b/extracted/Sprite/char_Father_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c5422e62ccb5b582259cc63e9f2ab06799cde976218ef7532975c404a0737c +size 4904 diff --git a/extracted/Sprite/char_Father_outline_6.png.import b/extracted/Sprite/char_Father_outline_6.png.import new file mode 100644 index 0000000..fe6982a --- /dev/null +++ b/extracted/Sprite/char_Father_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo37inhhk1vpl" +path="res://.godot/imported/char_Father_outline_6.png-e1c1667a2d239282c433a7883fd5e3b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Father_outline_6.png" +dest_files=["res://.godot/imported/char_Father_outline_6.png-e1c1667a2d239282c433a7883fd5e3b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_0 #64715.png b/extracted/Sprite/char_Lion_outline_0 #64715.png new file mode 100644 index 0000000..3110cd1 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_0 #64715.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ba2c72b094b0ce24cf24abd5b342ac3bd83f7dd25df6c3c6c0a0805f4f06ff +size 57081 diff --git a/extracted/Sprite/char_Lion_outline_0 #64715.png.import b/extracted/Sprite/char_Lion_outline_0 #64715.png.import new file mode 100644 index 0000000..9bd3e19 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_0 #64715.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjnns821p8o5k" +path="res://.godot/imported/char_Lion_outline_0 #64715.png-d88775fde5a839c8eefb31bcb9863173.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_0 #64715.png" +dest_files=["res://.godot/imported/char_Lion_outline_0 #64715.png-d88775fde5a839c8eefb31bcb9863173.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_0.png b/extracted/Sprite/char_Lion_outline_0.png new file mode 100644 index 0000000..1df912c --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0badb149a17bab44bbedafba4fd82c5ab820dee2a8ba0ba29113c7697d5a7e +size 63549 diff --git a/extracted/Sprite/char_Lion_outline_0.png.import b/extracted/Sprite/char_Lion_outline_0.png.import new file mode 100644 index 0000000..f9b3cf8 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6yokmhhx3w83" +path="res://.godot/imported/char_Lion_outline_0.png-4215ed6ded77771ebdab0ae8c94e9ca6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_0.png" +dest_files=["res://.godot/imported/char_Lion_outline_0.png-4215ed6ded77771ebdab0ae8c94e9ca6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_1 #63514.png b/extracted/Sprite/char_Lion_outline_1 #63514.png new file mode 100644 index 0000000..d4c8949 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63514.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44204ac096f4f5a5d5da1c3293738b0aeeb2de1082be3d52ccdb25ae5d2d4db6 +size 16617 diff --git a/extracted/Sprite/char_Lion_outline_1 #63514.png.import b/extracted/Sprite/char_Lion_outline_1 #63514.png.import new file mode 100644 index 0000000..e289cdd --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63514.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgox0wku6xorc" +path="res://.godot/imported/char_Lion_outline_1 #63514.png-494e59051a2a502de0ce8c049fe3a4ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_1 #63514.png" +dest_files=["res://.godot/imported/char_Lion_outline_1 #63514.png-494e59051a2a502de0ce8c049fe3a4ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_1 #63515.png b/extracted/Sprite/char_Lion_outline_1 #63515.png new file mode 100644 index 0000000..09dce3f --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63515.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ea1a9c4fa685b926c380f5b6982b6474293b34e16e76cb98ac913980f56dab +size 18146 diff --git a/extracted/Sprite/char_Lion_outline_1 #63515.png.import b/extracted/Sprite/char_Lion_outline_1 #63515.png.import new file mode 100644 index 0000000..5026ab0 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63515.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v6hwoxafbpqq" +path="res://.godot/imported/char_Lion_outline_1 #63515.png-481a1a73fd8a74c3bf92f26f03e90969.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_1 #63515.png" +dest_files=["res://.godot/imported/char_Lion_outline_1 #63515.png-481a1a73fd8a74c3bf92f26f03e90969.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_1 #63700.png b/extracted/Sprite/char_Lion_outline_1 #63700.png new file mode 100644 index 0000000..ee4aca4 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63700.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4b6b702dd8671f29ce8fbb503836012804d4d5318b790172d7548df092eed9 +size 20162 diff --git a/extracted/Sprite/char_Lion_outline_1 #63700.png.import b/extracted/Sprite/char_Lion_outline_1 #63700.png.import new file mode 100644 index 0000000..40f263c --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1 #63700.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv2vuy8j2kpi" +path="res://.godot/imported/char_Lion_outline_1 #63700.png-488632243fdf39fec868154a7435720b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_1 #63700.png" +dest_files=["res://.godot/imported/char_Lion_outline_1 #63700.png-488632243fdf39fec868154a7435720b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_1.png b/extracted/Sprite/char_Lion_outline_1.png new file mode 100644 index 0000000..b4149b1 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93de169bf267e825cbda22e285e0a89a07bd5a2c02b1cd45ed1eace92dad14f9 +size 16367 diff --git a/extracted/Sprite/char_Lion_outline_1.png.import b/extracted/Sprite/char_Lion_outline_1.png.import new file mode 100644 index 0000000..b9797fa --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be87w5qt62vrx" +path="res://.godot/imported/char_Lion_outline_1.png-24569e1ab2f343628389b8ecfaff1d9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_1.png" +dest_files=["res://.godot/imported/char_Lion_outline_1.png-24569e1ab2f343628389b8ecfaff1d9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_2 #63568.png b/extracted/Sprite/char_Lion_outline_2 #63568.png new file mode 100644 index 0000000..432b982 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_2 #63568.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8c744d8c46d05109bdcd142bb682b8e902da58ae5c0787b25e9863eac46be5 +size 6243 diff --git a/extracted/Sprite/char_Lion_outline_2 #63568.png.import b/extracted/Sprite/char_Lion_outline_2 #63568.png.import new file mode 100644 index 0000000..1c8c301 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_2 #63568.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qjt21x5r8lbc" +path="res://.godot/imported/char_Lion_outline_2 #63568.png-1dcdac908733422449134aecf2a25846.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_2 #63568.png" +dest_files=["res://.godot/imported/char_Lion_outline_2 #63568.png-1dcdac908733422449134aecf2a25846.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_2.png b/extracted/Sprite/char_Lion_outline_2.png new file mode 100644 index 0000000..90fcd9f --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3d26754949bb507f25f266eaa30ac8e6dd7958ed4f61e6a35a62fb995d189c +size 3910 diff --git a/extracted/Sprite/char_Lion_outline_2.png.import b/extracted/Sprite/char_Lion_outline_2.png.import new file mode 100644 index 0000000..a3b25da --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckkh2e0l7wbuq" +path="res://.godot/imported/char_Lion_outline_2.png-a15def77e8dd6d568e364e12788dde68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_2.png" +dest_files=["res://.godot/imported/char_Lion_outline_2.png-a15def77e8dd6d568e364e12788dde68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_3 #63362.png b/extracted/Sprite/char_Lion_outline_3 #63362.png new file mode 100644 index 0000000..a508704 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #63362.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae379652053c1316672a77eba6710f3b3bb4cbff1f04385c4a647ccb15227de0 +size 19836 diff --git a/extracted/Sprite/char_Lion_outline_3 #63362.png.import b/extracted/Sprite/char_Lion_outline_3 #63362.png.import new file mode 100644 index 0000000..9c4a1b8 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #63362.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4g13yimhsceg" +path="res://.godot/imported/char_Lion_outline_3 #63362.png-298341d601abfea0c68f190eccd2fd34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_3 #63362.png" +dest_files=["res://.godot/imported/char_Lion_outline_3 #63362.png-298341d601abfea0c68f190eccd2fd34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_3 #63363.png b/extracted/Sprite/char_Lion_outline_3 #63363.png new file mode 100644 index 0000000..69556a9 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #63363.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16c853253869c9b18f183d07e33d2bd9ff280fad5f40e91973991d359112967 +size 21131 diff --git a/extracted/Sprite/char_Lion_outline_3 #63363.png.import b/extracted/Sprite/char_Lion_outline_3 #63363.png.import new file mode 100644 index 0000000..611e41b --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #63363.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5j25enolodh8" +path="res://.godot/imported/char_Lion_outline_3 #63363.png-d19deafada22584308d8c57597d2c050.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_3 #63363.png" +dest_files=["res://.godot/imported/char_Lion_outline_3 #63363.png-d19deafada22584308d8c57597d2c050.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_3 #64259.png b/extracted/Sprite/char_Lion_outline_3 #64259.png new file mode 100644 index 0000000..6d2b935 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #64259.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b7c0ef7acccf0b669a7f8f43d93f427651df96fba15d3c91b387e5daee3fdb +size 23438 diff --git a/extracted/Sprite/char_Lion_outline_3 #64259.png.import b/extracted/Sprite/char_Lion_outline_3 #64259.png.import new file mode 100644 index 0000000..69242bc --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3 #64259.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3qlmlfdyrovv" +path="res://.godot/imported/char_Lion_outline_3 #64259.png-296ed295a0c0a1bb2d1efc8d5b15c923.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_3 #64259.png" +dest_files=["res://.godot/imported/char_Lion_outline_3 #64259.png-296ed295a0c0a1bb2d1efc8d5b15c923.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_3.png b/extracted/Sprite/char_Lion_outline_3.png new file mode 100644 index 0000000..ea98290 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b084ae7b6966d6a6c1c21837b74f8e44e725896d404c2231d83493647895cfa5 +size 20043 diff --git a/extracted/Sprite/char_Lion_outline_3.png.import b/extracted/Sprite/char_Lion_outline_3.png.import new file mode 100644 index 0000000..8fd0713 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tx64k5ifwxr8" +path="res://.godot/imported/char_Lion_outline_3.png-9d9419abe25c3dde915e0e2390f2a697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_3.png" +dest_files=["res://.godot/imported/char_Lion_outline_3.png-9d9419abe25c3dde915e0e2390f2a697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_4 #64448.png b/extracted/Sprite/char_Lion_outline_4 #64448.png new file mode 100644 index 0000000..4e6ed32 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_4 #64448.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8513fd9e0188aa802f09f69e56002341679de0fd666d98b6c7e9842706c9a97 +size 54290 diff --git a/extracted/Sprite/char_Lion_outline_4 #64448.png.import b/extracted/Sprite/char_Lion_outline_4 #64448.png.import new file mode 100644 index 0000000..3d9a090 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_4 #64448.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8r4dpchwrx5n" +path="res://.godot/imported/char_Lion_outline_4 #64448.png-0678bcc987ee3f02f0ab3454487d76ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_4 #64448.png" +dest_files=["res://.godot/imported/char_Lion_outline_4 #64448.png-0678bcc987ee3f02f0ab3454487d76ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_4.png b/extracted/Sprite/char_Lion_outline_4.png new file mode 100644 index 0000000..039fb61 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1b86680a48a8ed86601cf5bcc9888cbe0e2d6f9f72967380255a7f95703a9a +size 47881 diff --git a/extracted/Sprite/char_Lion_outline_4.png.import b/extracted/Sprite/char_Lion_outline_4.png.import new file mode 100644 index 0000000..3da4c31 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tl5xq1fu4h83" +path="res://.godot/imported/char_Lion_outline_4.png-f631ee2c235cb84da7cab7061a0765a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_4.png" +dest_files=["res://.godot/imported/char_Lion_outline_4.png-f631ee2c235cb84da7cab7061a0765a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_5 #63601.png b/extracted/Sprite/char_Lion_outline_5 #63601.png new file mode 100644 index 0000000..2ce7c09 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_5 #63601.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88632eae127e16f24d21980de0a8b840ae293912d70ffa952557f417e422561f +size 8942 diff --git a/extracted/Sprite/char_Lion_outline_5 #63601.png.import b/extracted/Sprite/char_Lion_outline_5 #63601.png.import new file mode 100644 index 0000000..f968a8a --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_5 #63601.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1ywekntsumi5" +path="res://.godot/imported/char_Lion_outline_5 #63601.png-83c2cb1d6c249034cf179066a5b8e7c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_5 #63601.png" +dest_files=["res://.godot/imported/char_Lion_outline_5 #63601.png-83c2cb1d6c249034cf179066a5b8e7c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Lion_outline_5.png b/extracted/Sprite/char_Lion_outline_5.png new file mode 100644 index 0000000..48b8a05 --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3406f172acc115d9582d319dd0f33620a2fc9326b467324ce179e59d03011fc2 +size 5892 diff --git a/extracted/Sprite/char_Lion_outline_5.png.import b/extracted/Sprite/char_Lion_outline_5.png.import new file mode 100644 index 0000000..bb5ec0b --- /dev/null +++ b/extracted/Sprite/char_Lion_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwvd3vukefxea" +path="res://.godot/imported/char_Lion_outline_5.png-c5565a692e9685ab6e70fe195b387ecf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Lion_outline_5.png" +dest_files=["res://.godot/imported/char_Lion_outline_5.png-c5565a692e9685ab6e70fe195b387ecf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_0.png b/extracted/Sprite/char_Memorie_of_Father_outline_0.png new file mode 100644 index 0000000..bee3f25 --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8a22b18c0c64703778645fb661fdcf5c5a28ca7e2965a0a6f2d3d8ffa8545f +size 42817 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_0.png.import b/extracted/Sprite/char_Memorie_of_Father_outline_0.png.import new file mode 100644 index 0000000..79fb63f --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bto8fxq203tgb" +path="res://.godot/imported/char_Memorie_of_Father_outline_0.png-0c6e75ce9a40b113efd43bb566ca88b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Memorie_of_Father_outline_0.png" +dest_files=["res://.godot/imported/char_Memorie_of_Father_outline_0.png-0c6e75ce9a40b113efd43bb566ca88b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_1.png b/extracted/Sprite/char_Memorie_of_Father_outline_1.png new file mode 100644 index 0000000..7e83008 --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e111b48cd663c49f494112ee8c221c8cd179b7ab8fee964059769a0e45c963 +size 26634 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_1.png.import b/extracted/Sprite/char_Memorie_of_Father_outline_1.png.import new file mode 100644 index 0000000..5407cf9 --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nhfij6np6vyt" +path="res://.godot/imported/char_Memorie_of_Father_outline_1.png-269da687c9400c9bf7378753241b8c15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Memorie_of_Father_outline_1.png" +dest_files=["res://.godot/imported/char_Memorie_of_Father_outline_1.png-269da687c9400c9bf7378753241b8c15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_2.png b/extracted/Sprite/char_Memorie_of_Father_outline_2.png new file mode 100644 index 0000000..cf423b0 --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e753614d1d71f3d4419748c10bd8dad14785fd6a2a72220f203387044d72ac3 +size 4018 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_2.png.import b/extracted/Sprite/char_Memorie_of_Father_outline_2.png.import new file mode 100644 index 0000000..f7b484d --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgj6y861xw48n" +path="res://.godot/imported/char_Memorie_of_Father_outline_2.png-a06a2eb3c9606aa04cdad61a785e0cc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Memorie_of_Father_outline_2.png" +dest_files=["res://.godot/imported/char_Memorie_of_Father_outline_2.png-a06a2eb3c9606aa04cdad61a785e0cc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_3.png b/extracted/Sprite/char_Memorie_of_Father_outline_3.png new file mode 100644 index 0000000..a0072ce --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9487f867845fd419052b56be1365d8cc05294095eae8b70b99906b95596d0dd4 +size 4111 diff --git a/extracted/Sprite/char_Memorie_of_Father_outline_3.png.import b/extracted/Sprite/char_Memorie_of_Father_outline_3.png.import new file mode 100644 index 0000000..e97e760 --- /dev/null +++ b/extracted/Sprite/char_Memorie_of_Father_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlb5m4ymvhu1o" +path="res://.godot/imported/char_Memorie_of_Father_outline_3.png-887c0c26f4404bb9287cc1cb5698ee04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Memorie_of_Father_outline_3.png" +dest_files=["res://.godot/imported/char_Memorie_of_Father_outline_3.png-887c0c26f4404bb9287cc1cb5698ee04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_0 #64650.png b/extracted/Sprite/char_Miner_outline_0 #64650.png new file mode 100644 index 0000000..c01f17c --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_0 #64650.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b18df8e0877bd7fdc73a4b9fa31ddb11afe86aa511dac91499e521395a11269d +size 51758 diff --git a/extracted/Sprite/char_Miner_outline_0 #64650.png.import b/extracted/Sprite/char_Miner_outline_0 #64650.png.import new file mode 100644 index 0000000..b8cb220 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_0 #64650.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cosfxx0pv1wjx" +path="res://.godot/imported/char_Miner_outline_0 #64650.png-4fe548ccc6eb23a4dabb84250f6288ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_0 #64650.png" +dest_files=["res://.godot/imported/char_Miner_outline_0 #64650.png-4fe548ccc6eb23a4dabb84250f6288ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_0.png b/extracted/Sprite/char_Miner_outline_0.png new file mode 100644 index 0000000..093d894 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6353e55a7b48232acc77b12f732dcb45d3bd6d25e26249aad96d7a4a941707a2 +size 58435 diff --git a/extracted/Sprite/char_Miner_outline_0.png.import b/extracted/Sprite/char_Miner_outline_0.png.import new file mode 100644 index 0000000..865eed2 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxai4ipffu73w" +path="res://.godot/imported/char_Miner_outline_0.png-17eaa020ee18bfc9298515a93da9e0f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_0.png" +dest_files=["res://.godot/imported/char_Miner_outline_0.png-17eaa020ee18bfc9298515a93da9e0f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_1 #64450.png b/extracted/Sprite/char_Miner_outline_1 #64450.png new file mode 100644 index 0000000..a001d77 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_1 #64450.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b71d6619057ca606a061bab2260965a2051db88d241f73ea33e1e2c03e5319 +size 20633 diff --git a/extracted/Sprite/char_Miner_outline_1 #64450.png.import b/extracted/Sprite/char_Miner_outline_1 #64450.png.import new file mode 100644 index 0000000..6ccf54b --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_1 #64450.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxfj8rundgjvf" +path="res://.godot/imported/char_Miner_outline_1 #64450.png-030c89f29f2793d9d09c0fb487a0fb4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_1 #64450.png" +dest_files=["res://.godot/imported/char_Miner_outline_1 #64450.png-030c89f29f2793d9d09c0fb487a0fb4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_1.png b/extracted/Sprite/char_Miner_outline_1.png new file mode 100644 index 0000000..c1c4a8a --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f0849a8a137af3411ee8db22cc692cd82323367fe5ecd589a9392d19a98900 +size 16800 diff --git a/extracted/Sprite/char_Miner_outline_1.png.import b/extracted/Sprite/char_Miner_outline_1.png.import new file mode 100644 index 0000000..da7a8c5 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bixo2hr34tjr6" +path="res://.godot/imported/char_Miner_outline_1.png-5f459371b9090e634e49bf19a177b34b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_1.png" +dest_files=["res://.godot/imported/char_Miner_outline_1.png-5f459371b9090e634e49bf19a177b34b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_2 #63802.png b/extracted/Sprite/char_Miner_outline_2 #63802.png new file mode 100644 index 0000000..e2fa031 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_2 #63802.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc75a83cfb431fa67ad37144fa9e45682b7cc67de324c9bb3a8bf6c5bf9ba9a +size 48110 diff --git a/extracted/Sprite/char_Miner_outline_2 #63802.png.import b/extracted/Sprite/char_Miner_outline_2 #63802.png.import new file mode 100644 index 0000000..b84f026 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_2 #63802.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3p7wbof4uq5i" +path="res://.godot/imported/char_Miner_outline_2 #63802.png-342628b83fe6719e21b17f7fc93adf11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_2 #63802.png" +dest_files=["res://.godot/imported/char_Miner_outline_2 #63802.png-342628b83fe6719e21b17f7fc93adf11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_2.png b/extracted/Sprite/char_Miner_outline_2.png new file mode 100644 index 0000000..e8d96f7 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce82925b689f4050a727ffd7243a52b2d9a7a9e8ee780d8e49c1f1eb7d81776 +size 41055 diff --git a/extracted/Sprite/char_Miner_outline_2.png.import b/extracted/Sprite/char_Miner_outline_2.png.import new file mode 100644 index 0000000..f2bbc46 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35cw7pdp85p" +path="res://.godot/imported/char_Miner_outline_2.png-d185f186bd9a94fc85a0a6cc6cdd75e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_2.png" +dest_files=["res://.godot/imported/char_Miner_outline_2.png-d185f186bd9a94fc85a0a6cc6cdd75e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_3 #63604.png b/extracted/Sprite/char_Miner_outline_3 #63604.png new file mode 100644 index 0000000..6b85b12 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_3 #63604.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538ba825772fbf750d78e58e5d2f45b19ecfd73a69dbd51ae0e948978841b38b +size 17195 diff --git a/extracted/Sprite/char_Miner_outline_3 #63604.png.import b/extracted/Sprite/char_Miner_outline_3 #63604.png.import new file mode 100644 index 0000000..8683cb1 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_3 #63604.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctbku1ubx5p7h" +path="res://.godot/imported/char_Miner_outline_3 #63604.png-7c18d00422312d7779430bd66b72b8ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_3 #63604.png" +dest_files=["res://.godot/imported/char_Miner_outline_3 #63604.png-7c18d00422312d7779430bd66b72b8ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_3.png b/extracted/Sprite/char_Miner_outline_3.png new file mode 100644 index 0000000..e15b0f6 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaec9f476ce6d47887c9d86065bddc25f720c173c6d9a874bab3c6930e4e95b4 +size 13252 diff --git a/extracted/Sprite/char_Miner_outline_3.png.import b/extracted/Sprite/char_Miner_outline_3.png.import new file mode 100644 index 0000000..059cc89 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwealftaatc7v" +path="res://.godot/imported/char_Miner_outline_3.png-e37efe9e0d7c1a95d48d3ce4213d8592.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_3.png" +dest_files=["res://.godot/imported/char_Miner_outline_3.png-e37efe9e0d7c1a95d48d3ce4213d8592.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_4 #64595.png b/extracted/Sprite/char_Miner_outline_4 #64595.png new file mode 100644 index 0000000..f922314 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_4 #64595.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74033952c1a389c65c2e646fe2ad4fabd00e64e0a54a7a232054bcad392d06d8 +size 3861 diff --git a/extracted/Sprite/char_Miner_outline_4 #64595.png.import b/extracted/Sprite/char_Miner_outline_4 #64595.png.import new file mode 100644 index 0000000..d51887b --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_4 #64595.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cptx4t652nvmb" +path="res://.godot/imported/char_Miner_outline_4 #64595.png-9aa3b3764db185dd534c0d7abb1aa21b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_4 #64595.png" +dest_files=["res://.godot/imported/char_Miner_outline_4 #64595.png-9aa3b3764db185dd534c0d7abb1aa21b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_4.png b/extracted/Sprite/char_Miner_outline_4.png new file mode 100644 index 0000000..c4e78ea --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a53b5d2292eff7e1054d2ab5b63241be8db93ba8652d5240edb96c98bd4aa71 +size 6092 diff --git a/extracted/Sprite/char_Miner_outline_4.png.import b/extracted/Sprite/char_Miner_outline_4.png.import new file mode 100644 index 0000000..fed0932 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b57cgvxf3huq4" +path="res://.godot/imported/char_Miner_outline_4.png-173bfb160635eef6107869ac0296ece7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_4.png" +dest_files=["res://.godot/imported/char_Miner_outline_4.png-173bfb160635eef6107869ac0296ece7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_5 #63774.png b/extracted/Sprite/char_Miner_outline_5 #63774.png new file mode 100644 index 0000000..45648e0 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_5 #63774.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3076222f94ea850de25de317f24b42d3c5258afd6ca731e699861f87f136dc1a +size 5871 diff --git a/extracted/Sprite/char_Miner_outline_5 #63774.png.import b/extracted/Sprite/char_Miner_outline_5 #63774.png.import new file mode 100644 index 0000000..90d2da3 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_5 #63774.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4jl7arqmi87h" +path="res://.godot/imported/char_Miner_outline_5 #63774.png-f4d7e8a3e195629ee48991875d744a33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_5 #63774.png" +dest_files=["res://.godot/imported/char_Miner_outline_5 #63774.png-f4d7e8a3e195629ee48991875d744a33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_5.png b/extracted/Sprite/char_Miner_outline_5.png new file mode 100644 index 0000000..9014f26 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b52233d7546f60aa6cf99287ef567a8fbcb0006612e8cee457daf76c4db06b +size 3825 diff --git a/extracted/Sprite/char_Miner_outline_5.png.import b/extracted/Sprite/char_Miner_outline_5.png.import new file mode 100644 index 0000000..a77f77a --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgg8qd50m14a5" +path="res://.godot/imported/char_Miner_outline_5.png-14f5e0c06c3bdd9642de41e568c060ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_5.png" +dest_files=["res://.godot/imported/char_Miner_outline_5.png-14f5e0c06c3bdd9642de41e568c060ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_6 #64600.png b/extracted/Sprite/char_Miner_outline_6 #64600.png new file mode 100644 index 0000000..4d5c5a7 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_6 #64600.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b64c568485833a8789e6c026aa2bcfa221a3e3d238f50347820190db437dbf +size 12191 diff --git a/extracted/Sprite/char_Miner_outline_6 #64600.png.import b/extracted/Sprite/char_Miner_outline_6 #64600.png.import new file mode 100644 index 0000000..7fce069 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_6 #64600.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cknmd85cbdf8" +path="res://.godot/imported/char_Miner_outline_6 #64600.png-fd082dcec7c0bca786d08d9ce0b62534.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_6 #64600.png" +dest_files=["res://.godot/imported/char_Miner_outline_6 #64600.png-fd082dcec7c0bca786d08d9ce0b62534.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Miner_outline_6.png b/extracted/Sprite/char_Miner_outline_6.png new file mode 100644 index 0000000..fbfcfc9 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d195fc914dfd3a1b522627bafca3e431e4604d908027e8cf1d288c6f665660 +size 16529 diff --git a/extracted/Sprite/char_Miner_outline_6.png.import b/extracted/Sprite/char_Miner_outline_6.png.import new file mode 100644 index 0000000..14b39a4 --- /dev/null +++ b/extracted/Sprite/char_Miner_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnusswfbnrmp4" +path="res://.godot/imported/char_Miner_outline_6.png-ef01e0d5324e54f1b7c9e8e4cd56a088.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Miner_outline_6.png" +dest_files=["res://.godot/imported/char_Miner_outline_6.png-ef01e0d5324e54f1b7c9e8e4cd56a088.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_0 #64632.png b/extracted/Sprite/char_Musician_outline_0 #64632.png new file mode 100644 index 0000000..e0f9fb8 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_0 #64632.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5179a9a1669ec8e64ed2915b6cd6cdd6125dbc3939bfba4baa7aad8f16f2aa9c +size 43007 diff --git a/extracted/Sprite/char_Musician_outline_0 #64632.png.import b/extracted/Sprite/char_Musician_outline_0 #64632.png.import new file mode 100644 index 0000000..d6ac3f0 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_0 #64632.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ofd352ubdp0f" +path="res://.godot/imported/char_Musician_outline_0 #64632.png-cb54c72776d185b7e2d1cf1f1f3013e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_0 #64632.png" +dest_files=["res://.godot/imported/char_Musician_outline_0 #64632.png-cb54c72776d185b7e2d1cf1f1f3013e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_0.png b/extracted/Sprite/char_Musician_outline_0.png new file mode 100644 index 0000000..58f7660 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856c132705e84abbd12f6d8574ef65ab13a7f32f228e75145efa6ffbeeb93c71 +size 51841 diff --git a/extracted/Sprite/char_Musician_outline_0.png.import b/extracted/Sprite/char_Musician_outline_0.png.import new file mode 100644 index 0000000..be45b7d --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://16w3pcb1fch5" +path="res://.godot/imported/char_Musician_outline_0.png-b17ec82d735ea1c526627e1b2491ca44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_0.png" +dest_files=["res://.godot/imported/char_Musician_outline_0.png-b17ec82d735ea1c526627e1b2491ca44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_1 #64659.png b/extracted/Sprite/char_Musician_outline_1 #64659.png new file mode 100644 index 0000000..eda83df --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_1 #64659.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0397ce19aafba96b47b69695307f50a3d6303f5dfa4daaccad5f9b54ba38b0bb +size 32090 diff --git a/extracted/Sprite/char_Musician_outline_1 #64659.png.import b/extracted/Sprite/char_Musician_outline_1 #64659.png.import new file mode 100644 index 0000000..cf3ea4d --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_1 #64659.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4xohd4qsrq5x" +path="res://.godot/imported/char_Musician_outline_1 #64659.png-f8052484084325828107f7d57c1e06cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_1 #64659.png" +dest_files=["res://.godot/imported/char_Musician_outline_1 #64659.png-f8052484084325828107f7d57c1e06cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_1.png b/extracted/Sprite/char_Musician_outline_1.png new file mode 100644 index 0000000..b2cddf9 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50f985376ff133740ca8ff9a79f759c2ffe801b4b5cfb2c5f7ad6389d4d75f0 +size 37154 diff --git a/extracted/Sprite/char_Musician_outline_1.png.import b/extracted/Sprite/char_Musician_outline_1.png.import new file mode 100644 index 0000000..af74003 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj7qe30i3jspx" +path="res://.godot/imported/char_Musician_outline_1.png-8291954f969b4d5141a14b518598ce4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_1.png" +dest_files=["res://.godot/imported/char_Musician_outline_1.png-8291954f969b4d5141a14b518598ce4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_2 #64653.png b/extracted/Sprite/char_Musician_outline_2 #64653.png new file mode 100644 index 0000000..26ad5f9 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_2 #64653.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea53ae8d49a16453ba864c9ce87f008d6641ea214f52ad9e982dfa2d94e2661 +size 35738 diff --git a/extracted/Sprite/char_Musician_outline_2 #64653.png.import b/extracted/Sprite/char_Musician_outline_2 #64653.png.import new file mode 100644 index 0000000..21df3f0 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_2 #64653.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyga4mtg48ykk" +path="res://.godot/imported/char_Musician_outline_2 #64653.png-b7eca0061bdd982a0814379abc2e2aa1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_2 #64653.png" +dest_files=["res://.godot/imported/char_Musician_outline_2 #64653.png-b7eca0061bdd982a0814379abc2e2aa1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_2.png b/extracted/Sprite/char_Musician_outline_2.png new file mode 100644 index 0000000..5f33ac0 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aac2a54a25ff2d40bb007d9da1ec1ae17efcc087fbc76b5c47a137e7014f58c +size 44122 diff --git a/extracted/Sprite/char_Musician_outline_2.png.import b/extracted/Sprite/char_Musician_outline_2.png.import new file mode 100644 index 0000000..ca757e2 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x6pan3f6ymn7" +path="res://.godot/imported/char_Musician_outline_2.png-9681ddc4da0e74d5b891e11e79634c95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_2.png" +dest_files=["res://.godot/imported/char_Musician_outline_2.png-9681ddc4da0e74d5b891e11e79634c95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_3 #64493.png b/extracted/Sprite/char_Musician_outline_3 #64493.png new file mode 100644 index 0000000..15dfaa7 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_3 #64493.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f418f6f5d26b07e231669967869c7f50b4e8820c49c8c9ae3adffadfc9d0f +size 32456 diff --git a/extracted/Sprite/char_Musician_outline_3 #64493.png.import b/extracted/Sprite/char_Musician_outline_3 #64493.png.import new file mode 100644 index 0000000..876c61e --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_3 #64493.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2rnfh40ljh1q" +path="res://.godot/imported/char_Musician_outline_3 #64493.png-31a084b9087d76a7abef13303704c815.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_3 #64493.png" +dest_files=["res://.godot/imported/char_Musician_outline_3 #64493.png-31a084b9087d76a7abef13303704c815.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_3.png b/extracted/Sprite/char_Musician_outline_3.png new file mode 100644 index 0000000..5a98745 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a974ba758190594dae2622d50f5e73215ba43d8463fcc7134f36e0bf094fb5f +size 27264 diff --git a/extracted/Sprite/char_Musician_outline_3.png.import b/extracted/Sprite/char_Musician_outline_3.png.import new file mode 100644 index 0000000..93fc080 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvav7e2bbuxeb" +path="res://.godot/imported/char_Musician_outline_3.png-9b9d8345fb7581584162a5bd60fa339c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_3.png" +dest_files=["res://.godot/imported/char_Musician_outline_3.png-9b9d8345fb7581584162a5bd60fa339c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_4 #63615.png b/extracted/Sprite/char_Musician_outline_4 #63615.png new file mode 100644 index 0000000..8cdd765 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_4 #63615.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83b22ea0932a19a551ed9f8d6c1b52d8000f60f8ed9faec9b54de1f21d59435 +size 5456 diff --git a/extracted/Sprite/char_Musician_outline_4 #63615.png.import b/extracted/Sprite/char_Musician_outline_4 #63615.png.import new file mode 100644 index 0000000..d65346c --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_4 #63615.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tyr5y3rxj2mx" +path="res://.godot/imported/char_Musician_outline_4 #63615.png-9573df21af8a34e62a765f49c2844f59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_4 #63615.png" +dest_files=["res://.godot/imported/char_Musician_outline_4 #63615.png-9573df21af8a34e62a765f49c2844f59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_4.png b/extracted/Sprite/char_Musician_outline_4.png new file mode 100644 index 0000000..1c9f8e8 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d5997b5c77800a81149af8bdf4569c8cc990113297dc1ed77cf7fd433b0abc +size 3521 diff --git a/extracted/Sprite/char_Musician_outline_4.png.import b/extracted/Sprite/char_Musician_outline_4.png.import new file mode 100644 index 0000000..31e92fa --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1wdyjpxvabim" +path="res://.godot/imported/char_Musician_outline_4.png-5e538cf676f4d6f82f708cfc0f0f160c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_4.png" +dest_files=["res://.godot/imported/char_Musician_outline_4.png-5e538cf676f4d6f82f708cfc0f0f160c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_5 #64590.png b/extracted/Sprite/char_Musician_outline_5 #64590.png new file mode 100644 index 0000000..c454448 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_5 #64590.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258d9317be7614c6e52b3d1ad89cf58d176d17fbee9d0293eb96fb6fb3846d92 +size 2511 diff --git a/extracted/Sprite/char_Musician_outline_5 #64590.png.import b/extracted/Sprite/char_Musician_outline_5 #64590.png.import new file mode 100644 index 0000000..b46f0db --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_5 #64590.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv4vki2oo04s6" +path="res://.godot/imported/char_Musician_outline_5 #64590.png-a4fe1bf1de5efda1a63525c0edeaa358.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_5 #64590.png" +dest_files=["res://.godot/imported/char_Musician_outline_5 #64590.png-a4fe1bf1de5efda1a63525c0edeaa358.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_5.png b/extracted/Sprite/char_Musician_outline_5.png new file mode 100644 index 0000000..254de78 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4a7a40bf39e057dcb0faad8c8cc2ebe62154c04ea74a39f214d39c17534170 +size 5586 diff --git a/extracted/Sprite/char_Musician_outline_5.png.import b/extracted/Sprite/char_Musician_outline_5.png.import new file mode 100644 index 0000000..d83a2f2 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcb6t2rc80hwc" +path="res://.godot/imported/char_Musician_outline_5.png-9c88ddf3b540b70e1aad33868044d214.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_5.png" +dest_files=["res://.godot/imported/char_Musician_outline_5.png-9c88ddf3b540b70e1aad33868044d214.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_6 #64369.png b/extracted/Sprite/char_Musician_outline_6 #64369.png new file mode 100644 index 0000000..19f8b92 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_6 #64369.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f65b315d3b22a3f4de3f8839f8360270eb94873f1373044d2a9ba186ee25b0 +size 8159 diff --git a/extracted/Sprite/char_Musician_outline_6 #64369.png.import b/extracted/Sprite/char_Musician_outline_6 #64369.png.import new file mode 100644 index 0000000..aed7ee6 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_6 #64369.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vwc7sbletb42" +path="res://.godot/imported/char_Musician_outline_6 #64369.png-14b74821c850a826076eaf85ed0126af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_6 #64369.png" +dest_files=["res://.godot/imported/char_Musician_outline_6 #64369.png-14b74821c850a826076eaf85ed0126af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Musician_outline_6.png b/extracted/Sprite/char_Musician_outline_6.png new file mode 100644 index 0000000..236a354 --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e7a73e70c22ca042c6bdaac5d8a4005191866464c2b5d2d6aff9fd4adc9496 +size 5402 diff --git a/extracted/Sprite/char_Musician_outline_6.png.import b/extracted/Sprite/char_Musician_outline_6.png.import new file mode 100644 index 0000000..c5914fc --- /dev/null +++ b/extracted/Sprite/char_Musician_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0fn35ub2cbv1" +path="res://.godot/imported/char_Musician_outline_6.png-8f68cc7912f58280a3399bd05ac17bd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Musician_outline_6.png" +dest_files=["res://.godot/imported/char_Musician_outline_6.png-8f68cc7912f58280a3399bd05ac17bd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_0 #64445.png b/extracted/Sprite/char_Oldlady_outline_0 #64445.png new file mode 100644 index 0000000..49e0836 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_0 #64445.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89bdcc91c4e9f74ee76e19cc078a01744c12ba973ae7223a9b9e0ebb9e6fc61 +size 56598 diff --git a/extracted/Sprite/char_Oldlady_outline_0 #64445.png.import b/extracted/Sprite/char_Oldlady_outline_0 #64445.png.import new file mode 100644 index 0000000..c1fc80c --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_0 #64445.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq6ayassrdl6x" +path="res://.godot/imported/char_Oldlady_outline_0 #64445.png-5ff6de694aa8db4af2380452daab3c79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_0 #64445.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_0 #64445.png-5ff6de694aa8db4af2380452daab3c79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_0.png b/extracted/Sprite/char_Oldlady_outline_0.png new file mode 100644 index 0000000..f36ee9d --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb0786b3947c39beb19743a9875e33306e0c46ff27a5da17073a19da7e0ab82 +size 50947 diff --git a/extracted/Sprite/char_Oldlady_outline_0.png.import b/extracted/Sprite/char_Oldlady_outline_0.png.import new file mode 100644 index 0000000..bc5f249 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp4xxawfqwi28" +path="res://.godot/imported/char_Oldlady_outline_0.png-a9f1d884fc64c26b14140020e5425091.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_0.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_0.png-a9f1d884fc64c26b14140020e5425091.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_1 #64605.png b/extracted/Sprite/char_Oldlady_outline_1 #64605.png new file mode 100644 index 0000000..5b9af20 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_1 #64605.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b394dbbd83998b171b27f0c4a5f0b8d468ee3bfaabbfec26d1c2a5f273b040 +size 27838 diff --git a/extracted/Sprite/char_Oldlady_outline_1 #64605.png.import b/extracted/Sprite/char_Oldlady_outline_1 #64605.png.import new file mode 100644 index 0000000..fac8b31 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_1 #64605.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyiggbwkd7oi6" +path="res://.godot/imported/char_Oldlady_outline_1 #64605.png-222cdea94dd8605d96e2b10666226bae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_1 #64605.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_1 #64605.png-222cdea94dd8605d96e2b10666226bae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_1.png b/extracted/Sprite/char_Oldlady_outline_1.png new file mode 100644 index 0000000..a28822e --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b09566336000ee728ffe05f336d8f2fddcd029a0f681d76e2cc1d1de910219 +size 32062 diff --git a/extracted/Sprite/char_Oldlady_outline_1.png.import b/extracted/Sprite/char_Oldlady_outline_1.png.import new file mode 100644 index 0000000..2348ec6 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du0exfdmnpyln" +path="res://.godot/imported/char_Oldlady_outline_1.png-a28a8298b5a535f1b804bea2538b92cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_1.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_1.png-a28a8298b5a535f1b804bea2538b92cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_2 #64525.png b/extracted/Sprite/char_Oldlady_outline_2 #64525.png new file mode 100644 index 0000000..75d0aa2 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_2 #64525.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8982377b5abc6dd5c43234d0c304ecd28572d6c0d3f2a25074d619a3c9dd96 +size 48215 diff --git a/extracted/Sprite/char_Oldlady_outline_2 #64525.png.import b/extracted/Sprite/char_Oldlady_outline_2 #64525.png.import new file mode 100644 index 0000000..efba378 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_2 #64525.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ljxvv38hwatd" +path="res://.godot/imported/char_Oldlady_outline_2 #64525.png-a12b05bffbd2acdecf55bc4945022560.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_2 #64525.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_2 #64525.png-a12b05bffbd2acdecf55bc4945022560.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_2.png b/extracted/Sprite/char_Oldlady_outline_2.png new file mode 100644 index 0000000..7d56115 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b337f766391da92cc2d669f2d1aa7e9a40094f4b90e1cf576d18b13abcaf6370 +size 54324 diff --git a/extracted/Sprite/char_Oldlady_outline_2.png.import b/extracted/Sprite/char_Oldlady_outline_2.png.import new file mode 100644 index 0000000..d9acf2e --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da2tlov7gdkc7" +path="res://.godot/imported/char_Oldlady_outline_2.png-87088b36eadd590cc866a8cc51881d37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_2.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_2.png-87088b36eadd590cc866a8cc51881d37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_3 #64320.png b/extracted/Sprite/char_Oldlady_outline_3 #64320.png new file mode 100644 index 0000000..4ab7ee3 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_3 #64320.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b828c012e8061adadcf826d254a99c9d1b22ae967bcf41993540d75cdd407 +size 25308 diff --git a/extracted/Sprite/char_Oldlady_outline_3 #64320.png.import b/extracted/Sprite/char_Oldlady_outline_3 #64320.png.import new file mode 100644 index 0000000..fe9ad31 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_3 #64320.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd7ul5nues4r6" +path="res://.godot/imported/char_Oldlady_outline_3 #64320.png-de9307f4d7bc91d9484954a81120a641.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_3 #64320.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_3 #64320.png-de9307f4d7bc91d9484954a81120a641.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_3.png b/extracted/Sprite/char_Oldlady_outline_3.png new file mode 100644 index 0000000..58912f7 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ce43e64bceaa0ea1e30b1efa35dc4bdeead72521962a15a764484cd2894f4f +size 21043 diff --git a/extracted/Sprite/char_Oldlady_outline_3.png.import b/extracted/Sprite/char_Oldlady_outline_3.png.import new file mode 100644 index 0000000..a6d4731 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eq7c2k7jbnk3" +path="res://.godot/imported/char_Oldlady_outline_3.png-69266a37fba3d1190b2936fd3df8c3cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_3.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_3.png-69266a37fba3d1190b2936fd3df8c3cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_4 #64568.png b/extracted/Sprite/char_Oldlady_outline_4 #64568.png new file mode 100644 index 0000000..d89eeef --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_4 #64568.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5da59eb8c9dc897ab6d0c4637a193faed4e78aa73087fa7b2856e78673ee82 +size 4761 diff --git a/extracted/Sprite/char_Oldlady_outline_4 #64568.png.import b/extracted/Sprite/char_Oldlady_outline_4 #64568.png.import new file mode 100644 index 0000000..89dd5d3 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_4 #64568.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbobvk0o0csao" +path="res://.godot/imported/char_Oldlady_outline_4 #64568.png-1fa957146d6ffdbcc7856f29add1e147.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_4 #64568.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_4 #64568.png-1fa957146d6ffdbcc7856f29add1e147.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_4.png b/extracted/Sprite/char_Oldlady_outline_4.png new file mode 100644 index 0000000..337c0d2 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511d340d57dac64c8b3aa748eb9d672f8ff39b5d6a95d5b7b99de4d1a389419e +size 7509 diff --git a/extracted/Sprite/char_Oldlady_outline_4.png.import b/extracted/Sprite/char_Oldlady_outline_4.png.import new file mode 100644 index 0000000..8bf7852 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ja30vhxpoq0f" +path="res://.godot/imported/char_Oldlady_outline_4.png-0e6112cfdd8c12184c8095ee9f23354f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_4.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_4.png-0e6112cfdd8c12184c8095ee9f23354f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_5 #64518.png b/extracted/Sprite/char_Oldlady_outline_5 #64518.png new file mode 100644 index 0000000..65f3b74 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_5 #64518.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5deb7718897b01379b9f73948058c8c06d37e91f864f3150243191fddc750b +size 7507 diff --git a/extracted/Sprite/char_Oldlady_outline_5 #64518.png.import b/extracted/Sprite/char_Oldlady_outline_5 #64518.png.import new file mode 100644 index 0000000..be02e26 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_5 #64518.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ncffwr7c5e7" +path="res://.godot/imported/char_Oldlady_outline_5 #64518.png-e49e7c281477b2217eb1ce2b7116f509.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_5 #64518.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_5 #64518.png-e49e7c281477b2217eb1ce2b7116f509.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_5.png b/extracted/Sprite/char_Oldlady_outline_5.png new file mode 100644 index 0000000..f4ab0f9 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45cb39ec3aaab7b1b3f951a131b0265f82c98d990304e970b5a4806392bcd73b +size 9966 diff --git a/extracted/Sprite/char_Oldlady_outline_5.png.import b/extracted/Sprite/char_Oldlady_outline_5.png.import new file mode 100644 index 0000000..5591a47 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2q8auks4sksh" +path="res://.godot/imported/char_Oldlady_outline_5.png-2d2ba32cf4011a6d9a0e3648c8148fa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_5.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_5.png-2d2ba32cf4011a6d9a0e3648c8148fa2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_6 #64604.png b/extracted/Sprite/char_Oldlady_outline_6 #64604.png new file mode 100644 index 0000000..2603733 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_6 #64604.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6b0b17c1768749eea89d166e41b1cf3b4d607efb4bc23a2522be677aa6ba03 +size 5863 diff --git a/extracted/Sprite/char_Oldlady_outline_6 #64604.png.import b/extracted/Sprite/char_Oldlady_outline_6 #64604.png.import new file mode 100644 index 0000000..7147f0b --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_6 #64604.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yvq70vcx5gll" +path="res://.godot/imported/char_Oldlady_outline_6 #64604.png-71686c4de859b2a8647e09f45679241c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_6 #64604.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_6 #64604.png-71686c4de859b2a8647e09f45679241c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_6.png b/extracted/Sprite/char_Oldlady_outline_6.png new file mode 100644 index 0000000..1fced84 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0d2a809747b00f456f0fe17e668ea0a591e8a073100f980d3f33f7a053922d +size 7843 diff --git a/extracted/Sprite/char_Oldlady_outline_6.png.import b/extracted/Sprite/char_Oldlady_outline_6.png.import new file mode 100644 index 0000000..a69e212 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1sdrtewwcbpv" +path="res://.godot/imported/char_Oldlady_outline_6.png-2fc0245a0b6bcd402578a0bf55c0e80d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_6.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_6.png-2fc0245a0b6bcd402578a0bf55c0e80d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_7 #64592.png b/extracted/Sprite/char_Oldlady_outline_7 #64592.png new file mode 100644 index 0000000..c7bf52c --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_7 #64592.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804cbd30cb9969a4fa203a8ed6e78094750a871455e684fe42c0840265cf097a +size 3918 diff --git a/extracted/Sprite/char_Oldlady_outline_7 #64592.png.import b/extracted/Sprite/char_Oldlady_outline_7 #64592.png.import new file mode 100644 index 0000000..bceffe0 --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_7 #64592.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccwkfclav224y" +path="res://.godot/imported/char_Oldlady_outline_7 #64592.png-b8376cd9488843fd9e8bfe68be947354.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_7 #64592.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_7 #64592.png-b8376cd9488843fd9e8bfe68be947354.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Oldlady_outline_7.png b/extracted/Sprite/char_Oldlady_outline_7.png new file mode 100644 index 0000000..7c8165c --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6380cd450563727585c5ec49bc994c8580cc135075b30ea2d2882856e491bb6 +size 6035 diff --git a/extracted/Sprite/char_Oldlady_outline_7.png.import b/extracted/Sprite/char_Oldlady_outline_7.png.import new file mode 100644 index 0000000..e08478f --- /dev/null +++ b/extracted/Sprite/char_Oldlady_outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch2w06ab4o1ef" +path="res://.godot/imported/char_Oldlady_outline_7.png-766e88a8db3b30c3ec4520080b9be945.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Oldlady_outline_7.png" +dest_files=["res://.godot/imported/char_Oldlady_outline_7.png-766e88a8db3b30c3ec4520080b9be945.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png b/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png new file mode 100644 index 0000000..6633cc7 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42741d04c7650332ebf76304e952465a8c441d4ece8d6fa591371f01242c80d1 +size 57161 diff --git a/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png.import b/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png.import new file mode 100644 index 0000000..f620a26 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_0 #64713.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ew5ds7kr7sk0" +path="res://.godot/imported/char_Paleontologyst_outline_0 #64713.png-8f655d098b57ab4a19524f04022a5b18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_0 #64713.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_0 #64713.png-8f655d098b57ab4a19524f04022a5b18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_0.png b/extracted/Sprite/char_Paleontologyst_outline_0.png new file mode 100644 index 0000000..708a7aa --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36ce9e8be785ecfd00710e1f96a79fe541f55eb5e9d66fa8e6bb488ca648b91 +size 64318 diff --git a/extracted/Sprite/char_Paleontologyst_outline_0.png.import b/extracted/Sprite/char_Paleontologyst_outline_0.png.import new file mode 100644 index 0000000..aaaf924 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq6uc26g5dvo6" +path="res://.godot/imported/char_Paleontologyst_outline_0.png-445de9a34963d55c28f87cb3a60d7936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_0.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_0.png-445de9a34963d55c28f87cb3a60d7936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png b/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png new file mode 100644 index 0000000..e28adb0 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d7393ecf0e264da17ab47e0d0544f367a4f8d62a1f17197872fca415f64584 +size 4161 diff --git a/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png.import b/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png.import new file mode 100644 index 0000000..5c8364a --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_1 #64661.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcopo1p4g023" +path="res://.godot/imported/char_Paleontologyst_outline_1 #64661.png-dfc1d518f3f0f179a159f481aed57a71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_1 #64661.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_1 #64661.png-dfc1d518f3f0f179a159f481aed57a71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_1.png b/extracted/Sprite/char_Paleontologyst_outline_1.png new file mode 100644 index 0000000..05ef399 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e790e011b6c6471bb696858422a61ba44662f6e55dc9fc289cbec949510db009 +size 5997 diff --git a/extracted/Sprite/char_Paleontologyst_outline_1.png.import b/extracted/Sprite/char_Paleontologyst_outline_1.png.import new file mode 100644 index 0000000..0e3b226 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uey8nosiqs84" +path="res://.godot/imported/char_Paleontologyst_outline_1.png-991845b5afc3462bef1fbbcf4c0429ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_1.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_1.png-991845b5afc3462bef1fbbcf4c0429ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png b/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png new file mode 100644 index 0000000..55b3a88 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9fcaf9177bdfbcdf09a82beefe5a28c75d43268e81bba62fe27eab442e29bd +size 24422 diff --git a/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png.import b/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png.import new file mode 100644 index 0000000..96130f5 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_2 #64606.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di6ygqnljdabx" +path="res://.godot/imported/char_Paleontologyst_outline_2 #64606.png-72066673a95acbda98bafa2fdfb50eed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_2 #64606.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_2 #64606.png-72066673a95acbda98bafa2fdfb50eed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_2.png b/extracted/Sprite/char_Paleontologyst_outline_2.png new file mode 100644 index 0000000..ef0fc88 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c0a295d53c24143a143982cbe148dc668e2c4385d2aa4254baf0923719d6ff +size 27619 diff --git a/extracted/Sprite/char_Paleontologyst_outline_2.png.import b/extracted/Sprite/char_Paleontologyst_outline_2.png.import new file mode 100644 index 0000000..3cd763b --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddq7l424h347l" +path="res://.godot/imported/char_Paleontologyst_outline_2.png-acd921ca66a628adf54ad29387f2638e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_2.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_2.png-acd921ca66a628adf54ad29387f2638e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png b/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png new file mode 100644 index 0000000..3d523ec --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a4c6ff7fb8e32f4d2dcec20d4c9fca5341c72ecbba95675d90e6a4f06fcc2d +size 18987 diff --git a/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png.import b/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png.import new file mode 100644 index 0000000..b35536f --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_3 #64721.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccyabtvkdha1y" +path="res://.godot/imported/char_Paleontologyst_outline_3 #64721.png-3a5e3bbd9ecd6b34db04ee734252215f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_3 #64721.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_3 #64721.png-3a5e3bbd9ecd6b34db04ee734252215f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_3.png b/extracted/Sprite/char_Paleontologyst_outline_3.png new file mode 100644 index 0000000..68a5dde --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd312461b30c31c3ed9f357658f952bef7a09a8a2826b8bf90278f6a29bd107e +size 22637 diff --git a/extracted/Sprite/char_Paleontologyst_outline_3.png.import b/extracted/Sprite/char_Paleontologyst_outline_3.png.import new file mode 100644 index 0000000..240f5d0 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciokjw8p0gobe" +path="res://.godot/imported/char_Paleontologyst_outline_3.png-76f4ae51d1c18a9aff2e74f6bee6df3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_3.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_3.png-76f4ae51d1c18a9aff2e74f6bee6df3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png b/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png new file mode 100644 index 0000000..b96182a --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90c55eb1b97040b9110258499101df226b4f3a78c09caf303c6d0bfa5c69f20 +size 49908 diff --git a/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png.import b/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png.import new file mode 100644 index 0000000..23fd0bc --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_4 #64556.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0vtma5mif3t6" +path="res://.godot/imported/char_Paleontologyst_outline_4 #64556.png-017147b035f1306abde4a8a0a8b1ef04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_4 #64556.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_4 #64556.png-017147b035f1306abde4a8a0a8b1ef04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_4.png b/extracted/Sprite/char_Paleontologyst_outline_4.png new file mode 100644 index 0000000..6b87452 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfe202440bcd8cb54dd442f6a8bced74ecbfaccda3a76291ebba0bd5c9e405c +size 57976 diff --git a/extracted/Sprite/char_Paleontologyst_outline_4.png.import b/extracted/Sprite/char_Paleontologyst_outline_4.png.import new file mode 100644 index 0000000..c7036b4 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dri7ayirbi12b" +path="res://.godot/imported/char_Paleontologyst_outline_4.png-5e95ddfb65443cafb77f0e4385b801cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_4.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_4.png-5e95ddfb65443cafb77f0e4385b801cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png b/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png new file mode 100644 index 0000000..fe62ded --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b79b14a74a420ba411f5c99e503454bdfeca0672f3347da793cc545723e2868 +size 4436 diff --git a/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png.import b/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png.import new file mode 100644 index 0000000..d87fa7b --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_5 #64695.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csan7iv08fhmt" +path="res://.godot/imported/char_Paleontologyst_outline_5 #64695.png-a07a30ec65a23325044a2691f31b717c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_5 #64695.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_5 #64695.png-a07a30ec65a23325044a2691f31b717c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_5.png b/extracted/Sprite/char_Paleontologyst_outline_5.png new file mode 100644 index 0000000..71ae73f --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a34f909a67b7df6af366c4701508ce35a31f6f0eec348c38f3609b8428671c +size 6834 diff --git a/extracted/Sprite/char_Paleontologyst_outline_5.png.import b/extracted/Sprite/char_Paleontologyst_outline_5.png.import new file mode 100644 index 0000000..2542a2a --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbtbugu4ahtma" +path="res://.godot/imported/char_Paleontologyst_outline_5.png-91372af5bec12477792f2a2290ab18bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_5.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_5.png-91372af5bec12477792f2a2290ab18bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png b/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png new file mode 100644 index 0000000..dbf8c22 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d36c9da0b1685e746354a05012d13ca27b289cdcf052cdbf977ddd606cc4b7 +size 8309 diff --git a/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png.import b/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png.import new file mode 100644 index 0000000..5e0c946 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_6 #64660.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ha0uhci87npd" +path="res://.godot/imported/char_Paleontologyst_outline_6 #64660.png-38d40c52b17ed92a9eb71c82937dbc3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_6 #64660.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_6 #64660.png-38d40c52b17ed92a9eb71c82937dbc3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Paleontologyst_outline_6.png b/extracted/Sprite/char_Paleontologyst_outline_6.png new file mode 100644 index 0000000..2e42f25 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b10c76b79d36d99b08539b75f416fec06aa8cd0510d39680b61d42d51281c33 +size 11003 diff --git a/extracted/Sprite/char_Paleontologyst_outline_6.png.import b/extracted/Sprite/char_Paleontologyst_outline_6.png.import new file mode 100644 index 0000000..b557af7 --- /dev/null +++ b/extracted/Sprite/char_Paleontologyst_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlcedlhlygkmb" +path="res://.godot/imported/char_Paleontologyst_outline_6.png-d230500f580e699d027fcb5f66e1aea6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Paleontologyst_outline_6.png" +dest_files=["res://.godot/imported/char_Paleontologyst_outline_6.png-d230500f580e699d027fcb5f66e1aea6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_0 #64566.png b/extracted/Sprite/char_Pirate_outline_0 #64566.png new file mode 100644 index 0000000..788ceea --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_0 #64566.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b221ff8203491c754be5f08d5179480ada4b1bcc1a21cdd5a0ce8d8327841233 +size 43691 diff --git a/extracted/Sprite/char_Pirate_outline_0 #64566.png.import b/extracted/Sprite/char_Pirate_outline_0 #64566.png.import new file mode 100644 index 0000000..8dc8ed4 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_0 #64566.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpe3dx3udi2hw" +path="res://.godot/imported/char_Pirate_outline_0 #64566.png-8461c85288bd61918d8767ab4f752d68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_0 #64566.png" +dest_files=["res://.godot/imported/char_Pirate_outline_0 #64566.png-8461c85288bd61918d8767ab4f752d68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_0.png b/extracted/Sprite/char_Pirate_outline_0.png new file mode 100644 index 0000000..61fdf1a --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24bec99051c3bcbf09ae2ec377a7d691cd90d6e0a6a39673ba829db8a1b3705 +size 49023 diff --git a/extracted/Sprite/char_Pirate_outline_0.png.import b/extracted/Sprite/char_Pirate_outline_0.png.import new file mode 100644 index 0000000..00026b9 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciijwc7vmkxn1" +path="res://.godot/imported/char_Pirate_outline_0.png-e3d64cce91f488fec270f7dc8f61da52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_0.png" +dest_files=["res://.godot/imported/char_Pirate_outline_0.png-e3d64cce91f488fec270f7dc8f61da52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_1 #64602.png b/extracted/Sprite/char_Pirate_outline_1 #64602.png new file mode 100644 index 0000000..b7b774b --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_1 #64602.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35da0d86b9cc68b672fa212eaacb8439abe9cc0174926e6908b3f44f52d07ef4 +size 14142 diff --git a/extracted/Sprite/char_Pirate_outline_1 #64602.png.import b/extracted/Sprite/char_Pirate_outline_1 #64602.png.import new file mode 100644 index 0000000..0c977e1 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_1 #64602.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kcjwo61q2kno" +path="res://.godot/imported/char_Pirate_outline_1 #64602.png-2315839fc5df162eeb385304448334ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_1 #64602.png" +dest_files=["res://.godot/imported/char_Pirate_outline_1 #64602.png-2315839fc5df162eeb385304448334ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_1.png b/extracted/Sprite/char_Pirate_outline_1.png new file mode 100644 index 0000000..f74b32a --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884ec0f92389aa8c284e7d1b6e0c077faf352c261795ac83068a47a1da753082 +size 18068 diff --git a/extracted/Sprite/char_Pirate_outline_1.png.import b/extracted/Sprite/char_Pirate_outline_1.png.import new file mode 100644 index 0000000..36d1b6f --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbm52u0urcwym" +path="res://.godot/imported/char_Pirate_outline_1.png-f266b3cb123c3ba757f98cd685363764.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_1.png" +dest_files=["res://.godot/imported/char_Pirate_outline_1.png-f266b3cb123c3ba757f98cd685363764.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_2 #64596.png b/extracted/Sprite/char_Pirate_outline_2 #64596.png new file mode 100644 index 0000000..bfd60b6 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_2 #64596.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27feade1d9238b48e62382c83cecb203f7b2bf2b78f4c9fa755480ef779e773f +size 48846 diff --git a/extracted/Sprite/char_Pirate_outline_2 #64596.png.import b/extracted/Sprite/char_Pirate_outline_2 #64596.png.import new file mode 100644 index 0000000..9ea10a5 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_2 #64596.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs0yt0n77257s" +path="res://.godot/imported/char_Pirate_outline_2 #64596.png-b419d18e14d4f6a302e7e5cc73ea6f8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_2 #64596.png" +dest_files=["res://.godot/imported/char_Pirate_outline_2 #64596.png-b419d18e14d4f6a302e7e5cc73ea6f8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_2.png b/extracted/Sprite/char_Pirate_outline_2.png new file mode 100644 index 0000000..e981f90 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba0754821463e65c0526e30d4e3d2f48b3d1144776d7d55f81dd11b4d31d216 +size 50642 diff --git a/extracted/Sprite/char_Pirate_outline_2.png.import b/extracted/Sprite/char_Pirate_outline_2.png.import new file mode 100644 index 0000000..e102d75 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmms1d1oqtkgi" +path="res://.godot/imported/char_Pirate_outline_2.png-51721c1ee18ef2b5de1ade26a63c4ee1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_2.png" +dest_files=["res://.godot/imported/char_Pirate_outline_2.png-51721c1ee18ef2b5de1ade26a63c4ee1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_3 #64410.png b/extracted/Sprite/char_Pirate_outline_3 #64410.png new file mode 100644 index 0000000..39e13e0 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_3 #64410.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de728a890947ad9e8e69bde4335ee685d26a41d953eeccee117d459b4201fb4c +size 6394 diff --git a/extracted/Sprite/char_Pirate_outline_3 #64410.png.import b/extracted/Sprite/char_Pirate_outline_3 #64410.png.import new file mode 100644 index 0000000..6ba827f --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_3 #64410.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdl2xn562q8od" +path="res://.godot/imported/char_Pirate_outline_3 #64410.png-a4d74437685c9cd9705601886618c61d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_3 #64410.png" +dest_files=["res://.godot/imported/char_Pirate_outline_3 #64410.png-a4d74437685c9cd9705601886618c61d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_3.png b/extracted/Sprite/char_Pirate_outline_3.png new file mode 100644 index 0000000..0de43ec --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3c1ad3fee5d062f011adc1e8e6e1aa7a60f2ecb4ef1d5f98128c6152cd1207 +size 4368 diff --git a/extracted/Sprite/char_Pirate_outline_3.png.import b/extracted/Sprite/char_Pirate_outline_3.png.import new file mode 100644 index 0000000..09ec7af --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwx3yiqmttanb" +path="res://.godot/imported/char_Pirate_outline_3.png-5120fa11ff3757219307bf9e0ac524dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_3.png" +dest_files=["res://.godot/imported/char_Pirate_outline_3.png-5120fa11ff3757219307bf9e0ac524dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_4 #64569.png b/extracted/Sprite/char_Pirate_outline_4 #64569.png new file mode 100644 index 0000000..a7c9ab1 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_4 #64569.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95bd44f7ead3e6947088c6d961c0e84adab3e9a077a48b7bc824bdb35124e6e +size 25165 diff --git a/extracted/Sprite/char_Pirate_outline_4 #64569.png.import b/extracted/Sprite/char_Pirate_outline_4 #64569.png.import new file mode 100644 index 0000000..e87359f --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_4 #64569.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxcy1stjxedow" +path="res://.godot/imported/char_Pirate_outline_4 #64569.png-2984b00403c5056fe43bf5ea6d2b8ee6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_4 #64569.png" +dest_files=["res://.godot/imported/char_Pirate_outline_4 #64569.png-2984b00403c5056fe43bf5ea6d2b8ee6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_4.png b/extracted/Sprite/char_Pirate_outline_4.png new file mode 100644 index 0000000..275a402 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bb653a11831e0725ad21f4c51561f288d6b02dd22259b6539d61ec0d5b2cc2 +size 28696 diff --git a/extracted/Sprite/char_Pirate_outline_4.png.import b/extracted/Sprite/char_Pirate_outline_4.png.import new file mode 100644 index 0000000..276bded --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkv5gpgcokgsr" +path="res://.godot/imported/char_Pirate_outline_4.png-200b818075ffd378b2c29d79b87f6ce5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_4.png" +dest_files=["res://.godot/imported/char_Pirate_outline_4.png-200b818075ffd378b2c29d79b87f6ce5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_5 #64589.png b/extracted/Sprite/char_Pirate_outline_5 #64589.png new file mode 100644 index 0000000..bb86ccc --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_5 #64589.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42de6babc44823a7dfd54e11527c62a9f911d0934b2c2807ffa8e25ec56f885 +size 3025 diff --git a/extracted/Sprite/char_Pirate_outline_5 #64589.png.import b/extracted/Sprite/char_Pirate_outline_5 #64589.png.import new file mode 100644 index 0000000..7c4f6c3 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_5 #64589.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brb87r4nkgflg" +path="res://.godot/imported/char_Pirate_outline_5 #64589.png-48f0e2f08df35e76240e613eb9e330cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_5 #64589.png" +dest_files=["res://.godot/imported/char_Pirate_outline_5 #64589.png-48f0e2f08df35e76240e613eb9e330cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_5.png b/extracted/Sprite/char_Pirate_outline_5.png new file mode 100644 index 0000000..e092d9d --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fda15da732096600ae5d817ba16d9b6e621de673692e1eaf2367bce5fd84c80 +size 4782 diff --git a/extracted/Sprite/char_Pirate_outline_5.png.import b/extracted/Sprite/char_Pirate_outline_5.png.import new file mode 100644 index 0000000..9423194 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m4n8axn87j7q" +path="res://.godot/imported/char_Pirate_outline_5.png-37e5de95190c0a8e1861fe692815eb55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_5.png" +dest_files=["res://.godot/imported/char_Pirate_outline_5.png-37e5de95190c0a8e1861fe692815eb55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_6 #63708.png b/extracted/Sprite/char_Pirate_outline_6 #63708.png new file mode 100644 index 0000000..03ed853 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_6 #63708.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d71020fc56b5952a07fefc748e400d4e9c09c855551a568561ed08d31e0e05 +size 9390 diff --git a/extracted/Sprite/char_Pirate_outline_6 #63708.png.import b/extracted/Sprite/char_Pirate_outline_6 #63708.png.import new file mode 100644 index 0000000..6eef182 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_6 #63708.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgwuqqlkvpoir" +path="res://.godot/imported/char_Pirate_outline_6 #63708.png-99acdda091e7cec92d0e2ea6a18261bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_6 #63708.png" +dest_files=["res://.godot/imported/char_Pirate_outline_6 #63708.png-99acdda091e7cec92d0e2ea6a18261bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Pirate_outline_6.png b/extracted/Sprite/char_Pirate_outline_6.png new file mode 100644 index 0000000..e3917ec --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65077eb3c1f5d0430ad06580ac1ca7ab65f3be4834cb3541917aaab7c36e4510 +size 6127 diff --git a/extracted/Sprite/char_Pirate_outline_6.png.import b/extracted/Sprite/char_Pirate_outline_6.png.import new file mode 100644 index 0000000..5b72121 --- /dev/null +++ b/extracted/Sprite/char_Pirate_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxnvr6hu7ryn6" +path="res://.godot/imported/char_Pirate_outline_6.png-502e5d5df13c8e3086ce215eec4b4179.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Pirate_outline_6.png" +dest_files=["res://.godot/imported/char_Pirate_outline_6.png-502e5d5df13c8e3086ce215eec4b4179.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png b/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png new file mode 100644 index 0000000..d5d09cc --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324a08ceb1ba817aa3ba77cf905bd88b011b8d7a6e788b2ace91c6db399012ab +size 43713 diff --git a/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png.import b/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png.import new file mode 100644 index 0000000..e5c4400 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_0 #64478.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0otrhtcgwqrj" +path="res://.godot/imported/char_ShootingAlley_outline_0 #64478.png-35f274b12446d9363408212d52083911.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_0 #64478.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_0 #64478.png-35f274b12446d9363408212d52083911.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_0.png b/extracted/Sprite/char_ShootingAlley_outline_0.png new file mode 100644 index 0000000..cf9ea86 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3814c8a39196091bee372ed98572d81f9c1aaa9fe6d1f156c03ec9e3a7e3c876 +size 37479 diff --git a/extracted/Sprite/char_ShootingAlley_outline_0.png.import b/extracted/Sprite/char_ShootingAlley_outline_0.png.import new file mode 100644 index 0000000..ed3bb75 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crgfpi3s2em3c" +path="res://.godot/imported/char_ShootingAlley_outline_0.png-d346bf318217157dea9fe6d822efdee2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_0.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_0.png-d346bf318217157dea9fe6d822efdee2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png b/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png new file mode 100644 index 0000000..19455ab --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6996fcc1ae3b8ea8dfad919247c8482d26ba7825c5859f379bfc9c77b1ee718 +size 6163 diff --git a/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png.import b/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png.import new file mode 100644 index 0000000..c2019d4 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_1 #63715.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3cpxe4sqy5s8" +path="res://.godot/imported/char_ShootingAlley_outline_1 #63715.png-bd74e731b77c2fa5822164995ebac9e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_1 #63715.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_1 #63715.png-bd74e731b77c2fa5822164995ebac9e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_1.png b/extracted/Sprite/char_ShootingAlley_outline_1.png new file mode 100644 index 0000000..d726727 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aaa3ae8ed2965097487c9e1b90acb12f27760c9b6557cf872680415b8d04e63 +size 4291 diff --git a/extracted/Sprite/char_ShootingAlley_outline_1.png.import b/extracted/Sprite/char_ShootingAlley_outline_1.png.import new file mode 100644 index 0000000..5a85f1f --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbmtm27xh8khg" +path="res://.godot/imported/char_ShootingAlley_outline_1.png-d7be97c3cfbb3d1bcf1cb4330d9d12ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_1.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_1.png-d7be97c3cfbb3d1bcf1cb4330d9d12ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png b/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png new file mode 100644 index 0000000..c8f601f --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a0a096dc8229bf190022a03a927732df107cfd4d4d079df48e2f1ca66b3773 +size 30842 diff --git a/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png.import b/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png.import new file mode 100644 index 0000000..a6622f1 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_2 #64519.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgn868ar3n6r3" +path="res://.godot/imported/char_ShootingAlley_outline_2 #64519.png-e763ad52bd0eca09c42ad9f9b3f155e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_2 #64519.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_2 #64519.png-e763ad52bd0eca09c42ad9f9b3f155e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_2.png b/extracted/Sprite/char_ShootingAlley_outline_2.png new file mode 100644 index 0000000..d714dc9 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ffc958509d3269edc0043e7989f03fc91acf5829fb9acb1cbc408ff236615a +size 37477 diff --git a/extracted/Sprite/char_ShootingAlley_outline_2.png.import b/extracted/Sprite/char_ShootingAlley_outline_2.png.import new file mode 100644 index 0000000..78dc98d --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4f2hqkd5pi6w" +path="res://.godot/imported/char_ShootingAlley_outline_2.png-cf26f195da40bf07b48a7f1da0e2c704.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_2.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_2.png-cf26f195da40bf07b48a7f1da0e2c704.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png b/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png new file mode 100644 index 0000000..30cc4f4 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9c5ff38cf12abdb8e107a018d7ce871a768f66ffbb77fce93af8a9175cd153 +size 4090 diff --git a/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png.import b/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png.import new file mode 100644 index 0000000..fc343c4 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_3 #64671.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtp0oh6ehc7hr" +path="res://.godot/imported/char_ShootingAlley_outline_3 #64671.png-5650d56657c1543993178ab032048746.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_3 #64671.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_3 #64671.png-5650d56657c1543993178ab032048746.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_3.png b/extracted/Sprite/char_ShootingAlley_outline_3.png new file mode 100644 index 0000000..bdd054f --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be88a9023fac380e4663c7ee83c8652f6018de43f4bbc6b458b6c58e43465dbd +size 6101 diff --git a/extracted/Sprite/char_ShootingAlley_outline_3.png.import b/extracted/Sprite/char_ShootingAlley_outline_3.png.import new file mode 100644 index 0000000..5ace684 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7u2utc57wniy" +path="res://.godot/imported/char_ShootingAlley_outline_3.png-75600de3192a536732cb87850bf8dba4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_3.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_3.png-75600de3192a536732cb87850bf8dba4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png b/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png new file mode 100644 index 0000000..0b39855 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b285815695b11a4dd3d39ea566b2968e06519b12d7688af46450992d6222ef54 +size 25393 diff --git a/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png.import b/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png.import new file mode 100644 index 0000000..46e59d0 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_4 #64594.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fguxxkud4fgv" +path="res://.godot/imported/char_ShootingAlley_outline_4 #64594.png-c25c73740815bb3bf8db1cb3b9e52124.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_4 #64594.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_4 #64594.png-c25c73740815bb3bf8db1cb3b9e52124.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_4.png b/extracted/Sprite/char_ShootingAlley_outline_4.png new file mode 100644 index 0000000..199885b --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72eaa800a2d2980808fbaea5ff450f47edce4558ee15b07e5c53fab83b328b33 +size 28729 diff --git a/extracted/Sprite/char_ShootingAlley_outline_4.png.import b/extracted/Sprite/char_ShootingAlley_outline_4.png.import new file mode 100644 index 0000000..e68f136 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0rpfx5uvxuut" +path="res://.godot/imported/char_ShootingAlley_outline_4.png-afbdade37b8b87879a87001c8055f5f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_4.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_4.png-afbdade37b8b87879a87001c8055f5f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png b/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png new file mode 100644 index 0000000..c62bde6 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1318056a18049ce0742e75d34b54804dce4bc8a035acb2fa5bbff76c189d1c +size 23798 diff --git a/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png.import b/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png.import new file mode 100644 index 0000000..56aab21 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_5 #63647.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6tjoxgfdkulw" +path="res://.godot/imported/char_ShootingAlley_outline_5 #63647.png-57183692846504a72d650379fda55a2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_5 #63647.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_5 #63647.png-57183692846504a72d650379fda55a2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_5.png b/extracted/Sprite/char_ShootingAlley_outline_5.png new file mode 100644 index 0000000..9146b2d --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef512aa99c84f453b614833af6a90e5550b241d99aaf5842087fd7cf752264a +size 20297 diff --git a/extracted/Sprite/char_ShootingAlley_outline_5.png.import b/extracted/Sprite/char_ShootingAlley_outline_5.png.import new file mode 100644 index 0000000..a312f1a --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b248x0exa5kjq" +path="res://.godot/imported/char_ShootingAlley_outline_5.png-adf43ed93e5a592cb87ac442fd4e029c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_5.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_5.png-adf43ed93e5a592cb87ac442fd4e029c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png b/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png new file mode 100644 index 0000000..e6e2356 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1456407edd9803e1289844be0fb9d91fe94ab7e58419fcb37dbb3af65b5cb7e +size 10318 diff --git a/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png.import b/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png.import new file mode 100644 index 0000000..e371cbd --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_6 #63650.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd56f77kcc6uc" +path="res://.godot/imported/char_ShootingAlley_outline_6 #63650.png-cd4e5e95febb83b5a64d9e2c68bb09a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_6 #63650.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_6 #63650.png-cd4e5e95febb83b5a64d9e2c68bb09a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_ShootingAlley_outline_6.png b/extracted/Sprite/char_ShootingAlley_outline_6.png new file mode 100644 index 0000000..b16e75f --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00ea0c4461a97d72fc6992587cdc7cbb6624728cab0fc7d7f017b32b1fe4a4a +size 7865 diff --git a/extracted/Sprite/char_ShootingAlley_outline_6.png.import b/extracted/Sprite/char_ShootingAlley_outline_6.png.import new file mode 100644 index 0000000..30bbcc2 --- /dev/null +++ b/extracted/Sprite/char_ShootingAlley_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r0yq2ol2qlhs" +path="res://.godot/imported/char_ShootingAlley_outline_6.png-58343ba9154f4cbb7d575c6b8a235e0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_ShootingAlley_outline_6.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline_6.png-58343ba9154f4cbb7d575c6b8a235e0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_0 #64551.png b/extracted/Sprite/char_Support_outline_0 #64551.png new file mode 100644 index 0000000..98c5131 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_0 #64551.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4664a71751b43c22793f5a9f0bf5a102792b7536877a91d8b3e1d0106b26c4 +size 37508 diff --git a/extracted/Sprite/char_Support_outline_0 #64551.png.import b/extracted/Sprite/char_Support_outline_0 #64551.png.import new file mode 100644 index 0000000..da8bd36 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_0 #64551.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dppnjbi1lxgvj" +path="res://.godot/imported/char_Support_outline_0 #64551.png-6ee1fa4e74de519340da4fda4124e5de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_0 #64551.png" +dest_files=["res://.godot/imported/char_Support_outline_0 #64551.png-6ee1fa4e74de519340da4fda4124e5de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_0.png b/extracted/Sprite/char_Support_outline_0.png new file mode 100644 index 0000000..2a20437 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203be8ec853d5e9e5326eda7491fa3ac32911e316369ed3be0c72cd682727d26 +size 41816 diff --git a/extracted/Sprite/char_Support_outline_0.png.import b/extracted/Sprite/char_Support_outline_0.png.import new file mode 100644 index 0000000..6f39fa5 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v0ifqyrt7pd0" +path="res://.godot/imported/char_Support_outline_0.png-4d92ae2ec8679a3cf28884adbd049259.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_0.png" +dest_files=["res://.godot/imported/char_Support_outline_0.png-4d92ae2ec8679a3cf28884adbd049259.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_1 #64475.png b/extracted/Sprite/char_Support_outline_1 #64475.png new file mode 100644 index 0000000..f03141b --- /dev/null +++ b/extracted/Sprite/char_Support_outline_1 #64475.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0eba721d9d094a646a05689adb09c9fceb6afd97572b303c5b0a73281cf3532 +size 21477 diff --git a/extracted/Sprite/char_Support_outline_1 #64475.png.import b/extracted/Sprite/char_Support_outline_1 #64475.png.import new file mode 100644 index 0000000..da27ced --- /dev/null +++ b/extracted/Sprite/char_Support_outline_1 #64475.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b63mgo732ouwh" +path="res://.godot/imported/char_Support_outline_1 #64475.png-61fe4a38e8c8a439cad1b5002bbb0cf9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_1 #64475.png" +dest_files=["res://.godot/imported/char_Support_outline_1 #64475.png-61fe4a38e8c8a439cad1b5002bbb0cf9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_1.png b/extracted/Sprite/char_Support_outline_1.png new file mode 100644 index 0000000..306823c --- /dev/null +++ b/extracted/Sprite/char_Support_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5785630057954cdbfe3ff48e3feaac9815015a0d558c1a779b57917993f6200c +size 18060 diff --git a/extracted/Sprite/char_Support_outline_1.png.import b/extracted/Sprite/char_Support_outline_1.png.import new file mode 100644 index 0000000..81f9092 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6gim6vepi3ea" +path="res://.godot/imported/char_Support_outline_1.png-892b398dbea5bf00999a174c7298898b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_1.png" +dest_files=["res://.godot/imported/char_Support_outline_1.png-892b398dbea5bf00999a174c7298898b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_2 #64711.png b/extracted/Sprite/char_Support_outline_2 #64711.png new file mode 100644 index 0000000..5b22ceb --- /dev/null +++ b/extracted/Sprite/char_Support_outline_2 #64711.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2494304ce1c66fc1f8e451fa7763244d5034a4fe0eaca8b3ce5bc70ca0ec4b4b +size 25956 diff --git a/extracted/Sprite/char_Support_outline_2 #64711.png.import b/extracted/Sprite/char_Support_outline_2 #64711.png.import new file mode 100644 index 0000000..de97c5a --- /dev/null +++ b/extracted/Sprite/char_Support_outline_2 #64711.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by47uxhbyef8u" +path="res://.godot/imported/char_Support_outline_2 #64711.png-a438fcd1c64ba300e628d41ce66c1d63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_2 #64711.png" +dest_files=["res://.godot/imported/char_Support_outline_2 #64711.png-a438fcd1c64ba300e628d41ce66c1d63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_2.png b/extracted/Sprite/char_Support_outline_2.png new file mode 100644 index 0000000..99f164b --- /dev/null +++ b/extracted/Sprite/char_Support_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3395bb730e482a8f6622bdea79064be51d5957bb556253c37189686c692ef8f +size 32190 diff --git a/extracted/Sprite/char_Support_outline_2.png.import b/extracted/Sprite/char_Support_outline_2.png.import new file mode 100644 index 0000000..776a7cc --- /dev/null +++ b/extracted/Sprite/char_Support_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2kp1pxf2nylc" +path="res://.godot/imported/char_Support_outline_2.png-1c420c5af25bcd48ad47a9ea164faa39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_2.png" +dest_files=["res://.godot/imported/char_Support_outline_2.png-1c420c5af25bcd48ad47a9ea164faa39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_3 #64666.png b/extracted/Sprite/char_Support_outline_3 #64666.png new file mode 100644 index 0000000..69076b6 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_3 #64666.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdaf061ebbe09fd6d788a198cbe333805cccbff27872077a19757e66cf1aa7da +size 20477 diff --git a/extracted/Sprite/char_Support_outline_3 #64666.png.import b/extracted/Sprite/char_Support_outline_3 #64666.png.import new file mode 100644 index 0000000..87f269c --- /dev/null +++ b/extracted/Sprite/char_Support_outline_3 #64666.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds6eq0dxydl1a" +path="res://.godot/imported/char_Support_outline_3 #64666.png-ac56b663315bfcd5e3cd56043934b09b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_3 #64666.png" +dest_files=["res://.godot/imported/char_Support_outline_3 #64666.png-ac56b663315bfcd5e3cd56043934b09b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_3.png b/extracted/Sprite/char_Support_outline_3.png new file mode 100644 index 0000000..f7ff1bd --- /dev/null +++ b/extracted/Sprite/char_Support_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464f170d7a6a79d690299b837c160a18e79b0ed171c6749793fad66dcfeb79e4 +size 22931 diff --git a/extracted/Sprite/char_Support_outline_3.png.import b/extracted/Sprite/char_Support_outline_3.png.import new file mode 100644 index 0000000..23eec43 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c13hl8ofohq32" +path="res://.godot/imported/char_Support_outline_3.png-ca53d8bb19e9ed5010476994f008ac91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_3.png" +dest_files=["res://.godot/imported/char_Support_outline_3.png-ca53d8bb19e9ed5010476994f008ac91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_4 #64690.png b/extracted/Sprite/char_Support_outline_4 #64690.png new file mode 100644 index 0000000..3952a71 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_4 #64690.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773f4b004ef6cff38960965e41352887bb0e2778ca7c22e89fe487679aca01f6 +size 7162 diff --git a/extracted/Sprite/char_Support_outline_4 #64690.png.import b/extracted/Sprite/char_Support_outline_4 #64690.png.import new file mode 100644 index 0000000..a8f2640 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_4 #64690.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc5t1nojn0mk" +path="res://.godot/imported/char_Support_outline_4 #64690.png-48500d0f40f2d40e0a9a30d32e1e8b8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_4 #64690.png" +dest_files=["res://.godot/imported/char_Support_outline_4 #64690.png-48500d0f40f2d40e0a9a30d32e1e8b8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_4.png b/extracted/Sprite/char_Support_outline_4.png new file mode 100644 index 0000000..c846919 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e555faed0293051234d3972ba259a9b37e46eefcc88cf2ce2f6b6b64bc9a16 +size 9707 diff --git a/extracted/Sprite/char_Support_outline_4.png.import b/extracted/Sprite/char_Support_outline_4.png.import new file mode 100644 index 0000000..d847838 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f21l3tyn3pps" +path="res://.godot/imported/char_Support_outline_4.png-98eaa31ec605f6da4a2ce01dc4cff2f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_4.png" +dest_files=["res://.godot/imported/char_Support_outline_4.png-98eaa31ec605f6da4a2ce01dc4cff2f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_5 #64360.png b/extracted/Sprite/char_Support_outline_5 #64360.png new file mode 100644 index 0000000..d5195a7 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_5 #64360.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2749d28a1a9f6f50a3ccb4b6f1dcecd0ae502fa35500164410fc500e986a52f +size 4977 diff --git a/extracted/Sprite/char_Support_outline_5 #64360.png.import b/extracted/Sprite/char_Support_outline_5 #64360.png.import new file mode 100644 index 0000000..a0e7bc4 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_5 #64360.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn0t56aknbffj" +path="res://.godot/imported/char_Support_outline_5 #64360.png-3f28678d029b536d57a91d146c52baa3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_5 #64360.png" +dest_files=["res://.godot/imported/char_Support_outline_5 #64360.png-3f28678d029b536d57a91d146c52baa3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_5.png b/extracted/Sprite/char_Support_outline_5.png new file mode 100644 index 0000000..5075da9 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994b99cb687e73399afae7d6ee2e235337c0f2835fb06e4986e82bbd484bd45d +size 3060 diff --git a/extracted/Sprite/char_Support_outline_5.png.import b/extracted/Sprite/char_Support_outline_5.png.import new file mode 100644 index 0000000..d64b951 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxslhyjejsaqc" +path="res://.godot/imported/char_Support_outline_5.png-4454fabb1eb9ac10def93c4926db79d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_5.png" +dest_files=["res://.godot/imported/char_Support_outline_5.png-4454fabb1eb9ac10def93c4926db79d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_6 #64718.png b/extracted/Sprite/char_Support_outline_6 #64718.png new file mode 100644 index 0000000..1473a5d --- /dev/null +++ b/extracted/Sprite/char_Support_outline_6 #64718.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d903f3a0064594117edfe9699aa79ac52d0ef4e954dcfa9dc72bde8b3ac4d92a +size 6240 diff --git a/extracted/Sprite/char_Support_outline_6 #64718.png.import b/extracted/Sprite/char_Support_outline_6 #64718.png.import new file mode 100644 index 0000000..a3102ea --- /dev/null +++ b/extracted/Sprite/char_Support_outline_6 #64718.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnda4q53oel6x" +path="res://.godot/imported/char_Support_outline_6 #64718.png-9547e2ef8d9d24a3f20ce85747bfa372.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_6 #64718.png" +dest_files=["res://.godot/imported/char_Support_outline_6 #64718.png-9547e2ef8d9d24a3f20ce85747bfa372.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_Support_outline_6.png b/extracted/Sprite/char_Support_outline_6.png new file mode 100644 index 0000000..f4fd10b --- /dev/null +++ b/extracted/Sprite/char_Support_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23012a0850845378e991a5c8338e8ca7706ff5b40d5b75a463524213c2f96b68 +size 8897 diff --git a/extracted/Sprite/char_Support_outline_6.png.import b/extracted/Sprite/char_Support_outline_6.png.import new file mode 100644 index 0000000..69a8d53 --- /dev/null +++ b/extracted/Sprite/char_Support_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://om36snte7sco" +path="res://.godot/imported/char_Support_outline_6.png-71b80f2aafa7ed66453dd54b38f9e215.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_Support_outline_6.png" +dest_files=["res://.godot/imported/char_Support_outline_6.png-71b80f2aafa7ed66453dd54b38f9e215.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_0 #64654.png b/extracted/Sprite/char_cat_outline_0 #64654.png new file mode 100644 index 0000000..675b2c2 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64654.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3353297cf5f12ae462c8132744756d91b60918a8d7068be9b3f9fde1af388f5d +size 3993 diff --git a/extracted/Sprite/char_cat_outline_0 #64654.png.import b/extracted/Sprite/char_cat_outline_0 #64654.png.import new file mode 100644 index 0000000..1bf4270 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64654.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://car50655dy7wk" +path="res://.godot/imported/char_cat_outline_0 #64654.png-bfb26814c623c4e623b805c1135b90c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_0 #64654.png" +dest_files=["res://.godot/imported/char_cat_outline_0 #64654.png-bfb26814c623c4e623b805c1135b90c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_0 #64655.png b/extracted/Sprite/char_cat_outline_0 #64655.png new file mode 100644 index 0000000..737889a --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64655.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614cf017e14083bd15b82edd2e805b271b14705c7ef1e5a3d600c722d60deea3 +size 6080 diff --git a/extracted/Sprite/char_cat_outline_0 #64655.png.import b/extracted/Sprite/char_cat_outline_0 #64655.png.import new file mode 100644 index 0000000..e68069a --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64655.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da4ak6tmst4ul" +path="res://.godot/imported/char_cat_outline_0 #64655.png-74711861a781ce9c8b6c5d63dbf5a913.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_0 #64655.png" +dest_files=["res://.godot/imported/char_cat_outline_0 #64655.png-74711861a781ce9c8b6c5d63dbf5a913.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_0 #64656.png b/extracted/Sprite/char_cat_outline_0 #64656.png new file mode 100644 index 0000000..d7019ac --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64656.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1b523f8f4798a6f3ae42712f5e7b626a138ab73d4ac4612079d5ce082773c2 +size 3560 diff --git a/extracted/Sprite/char_cat_outline_0 #64656.png.import b/extracted/Sprite/char_cat_outline_0 #64656.png.import new file mode 100644 index 0000000..2119b6d --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0 #64656.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chn5l7tglmhs7" +path="res://.godot/imported/char_cat_outline_0 #64656.png-07a94be80797f0a8c0f613d3ed8b2205.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_0 #64656.png" +dest_files=["res://.godot/imported/char_cat_outline_0 #64656.png-07a94be80797f0a8c0f613d3ed8b2205.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_0.png b/extracted/Sprite/char_cat_outline_0.png new file mode 100644 index 0000000..0942f6b --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718a10c0e8645c78fd143331d2ff621c48cfdc691869a7ac3fd2e5f84e496335 +size 5673 diff --git a/extracted/Sprite/char_cat_outline_0.png.import b/extracted/Sprite/char_cat_outline_0.png.import new file mode 100644 index 0000000..2e5d772 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3tmshaayyd48" +path="res://.godot/imported/char_cat_outline_0.png-4ead8512484d43e5eb2350dd4911b6db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_0.png" +dest_files=["res://.godot/imported/char_cat_outline_0.png-4ead8512484d43e5eb2350dd4911b6db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_1 #63348.png b/extracted/Sprite/char_cat_outline_1 #63348.png new file mode 100644 index 0000000..a4678bc --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63348.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6594c7571b99d338c77440c52320bd0758147ccd4cee313b8fd5ab2543ccec0 +size 24333 diff --git a/extracted/Sprite/char_cat_outline_1 #63348.png.import b/extracted/Sprite/char_cat_outline_1 #63348.png.import new file mode 100644 index 0000000..ad767d4 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63348.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db25dbks4msub" +path="res://.godot/imported/char_cat_outline_1 #63348.png-a0035a9bf484b9c0cc389058314048dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_1 #63348.png" +dest_files=["res://.godot/imported/char_cat_outline_1 #63348.png-a0035a9bf484b9c0cc389058314048dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_1 #63349.png b/extracted/Sprite/char_cat_outline_1 #63349.png new file mode 100644 index 0000000..52edbb9 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63349.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc2540b89bae716535641f55baaca49026b8bb7b93a153b197efa6375ac05d3 +size 15813 diff --git a/extracted/Sprite/char_cat_outline_1 #63349.png.import b/extracted/Sprite/char_cat_outline_1 #63349.png.import new file mode 100644 index 0000000..6e208e3 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63349.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qhnfayja08ai" +path="res://.godot/imported/char_cat_outline_1 #63349.png-8df014c51e244d1069091987c67eff1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_1 #63349.png" +dest_files=["res://.godot/imported/char_cat_outline_1 #63349.png-8df014c51e244d1069091987c67eff1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_1 #63621.png b/extracted/Sprite/char_cat_outline_1 #63621.png new file mode 100644 index 0000000..904e17b --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63621.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b5850d83e861f6a33e3b03cba8d4438010618aab005d2bb70cc93aa74a29edc +size 20556 diff --git a/extracted/Sprite/char_cat_outline_1 #63621.png.import b/extracted/Sprite/char_cat_outline_1 #63621.png.import new file mode 100644 index 0000000..a671fd3 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1 #63621.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djkf3vfpns8pc" +path="res://.godot/imported/char_cat_outline_1 #63621.png-ccad03082fe6207848d96d99c2b170cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_1 #63621.png" +dest_files=["res://.godot/imported/char_cat_outline_1 #63621.png-ccad03082fe6207848d96d99c2b170cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_1.png b/extracted/Sprite/char_cat_outline_1.png new file mode 100644 index 0000000..7e1beaf --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975dfe35fe7e6b98a26242d089e165852a3989facaf5fb84336400ba15b39256 +size 19705 diff --git a/extracted/Sprite/char_cat_outline_1.png.import b/extracted/Sprite/char_cat_outline_1.png.import new file mode 100644 index 0000000..8bb3b39 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://khnpr5iu1ck2" +path="res://.godot/imported/char_cat_outline_1.png-b95de19023df3378b6a28a48bf8172f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_1.png" +dest_files=["res://.godot/imported/char_cat_outline_1.png-b95de19023df3378b6a28a48bf8172f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_2 #63505.png b/extracted/Sprite/char_cat_outline_2 #63505.png new file mode 100644 index 0000000..a94387a --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63505.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c16e23d8ababe10febe21da6c527849e360a33558685d12419a9c94e9f0c30 +size 12143 diff --git a/extracted/Sprite/char_cat_outline_2 #63505.png.import b/extracted/Sprite/char_cat_outline_2 #63505.png.import new file mode 100644 index 0000000..b490a1e --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63505.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di3buwectwofj" +path="res://.godot/imported/char_cat_outline_2 #63505.png-d9b57e40c34139c27729545019afa923.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_2 #63505.png" +dest_files=["res://.godot/imported/char_cat_outline_2 #63505.png-d9b57e40c34139c27729545019afa923.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_2 #63506.png b/extracted/Sprite/char_cat_outline_2 #63506.png new file mode 100644 index 0000000..4b93f7c --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63506.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d00f25d4ad255645ec0e4285605a6273814371d4b13ffa3ae4c11cacd81596 +size 7476 diff --git a/extracted/Sprite/char_cat_outline_2 #63506.png.import b/extracted/Sprite/char_cat_outline_2 #63506.png.import new file mode 100644 index 0000000..0b2e9ce --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63506.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cducf02oxuqpg" +path="res://.godot/imported/char_cat_outline_2 #63506.png-a2efb2a1a4f7cfc9304382722f90f61f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_2 #63506.png" +dest_files=["res://.godot/imported/char_cat_outline_2 #63506.png-a2efb2a1a4f7cfc9304382722f90f61f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_2 #63591.png b/extracted/Sprite/char_cat_outline_2 #63591.png new file mode 100644 index 0000000..da995d4 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63591.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19084c08dda75c033b5fc7467e31be3d4b02b03613631a932bdd2613b8868d82 +size 10966 diff --git a/extracted/Sprite/char_cat_outline_2 #63591.png.import b/extracted/Sprite/char_cat_outline_2 #63591.png.import new file mode 100644 index 0000000..c78feab --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2 #63591.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c57njk8ewlxho" +path="res://.godot/imported/char_cat_outline_2 #63591.png-d5fce21079dcbadd0b15498531d3523b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_2 #63591.png" +dest_files=["res://.godot/imported/char_cat_outline_2 #63591.png-d5fce21079dcbadd0b15498531d3523b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_2.png b/extracted/Sprite/char_cat_outline_2.png new file mode 100644 index 0000000..544542b --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09cb23d54b5d721cf5020a5cfec7ac9ec5a88b028127826b9039441a80dc9c66 +size 8857 diff --git a/extracted/Sprite/char_cat_outline_2.png.import b/extracted/Sprite/char_cat_outline_2.png.import new file mode 100644 index 0000000..c515c56 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bglsmtnq00vfx" +path="res://.godot/imported/char_cat_outline_2.png-4df46766b589b3eef88e8489baabfbc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_2.png" +dest_files=["res://.godot/imported/char_cat_outline_2.png-4df46766b589b3eef88e8489baabfbc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_3 #63316.png b/extracted/Sprite/char_cat_outline_3 #63316.png new file mode 100644 index 0000000..632bc21 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63316.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5cf204be01a3e4cce0444ba8643bed6b885b6409537d3bb1ea0e4f195855c4 +size 15045 diff --git a/extracted/Sprite/char_cat_outline_3 #63316.png.import b/extracted/Sprite/char_cat_outline_3 #63316.png.import new file mode 100644 index 0000000..8ca804a --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63316.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://80kq0y0ypvxv" +path="res://.godot/imported/char_cat_outline_3 #63316.png-65cb92c60b87e70cd70c24cba2d4c7f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_3 #63316.png" +dest_files=["res://.godot/imported/char_cat_outline_3 #63316.png-65cb92c60b87e70cd70c24cba2d4c7f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_3 #63317.png b/extracted/Sprite/char_cat_outline_3 #63317.png new file mode 100644 index 0000000..c6deb54 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63317.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d05e739857c8fa40a89fc89d779f0b68dee5498b8add6247d0b700849d8bf30 +size 8232 diff --git a/extracted/Sprite/char_cat_outline_3 #63317.png.import b/extracted/Sprite/char_cat_outline_3 #63317.png.import new file mode 100644 index 0000000..8253502 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63317.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6qnpjdcfx17r" +path="res://.godot/imported/char_cat_outline_3 #63317.png-bba2cd055bca0e7d8892442352533b76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_3 #63317.png" +dest_files=["res://.godot/imported/char_cat_outline_3 #63317.png-bba2cd055bca0e7d8892442352533b76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_3 #63687.png b/extracted/Sprite/char_cat_outline_3 #63687.png new file mode 100644 index 0000000..322a289 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63687.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a818d50f76bc5b39bccb3589f941550849451bd4721349a3952c8731418bdb6 +size 11828 diff --git a/extracted/Sprite/char_cat_outline_3 #63687.png.import b/extracted/Sprite/char_cat_outline_3 #63687.png.import new file mode 100644 index 0000000..9b0a4b5 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3 #63687.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1nj2ro8j6udo" +path="res://.godot/imported/char_cat_outline_3 #63687.png-c5d5d8df7c33961272c065db19af4a98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_3 #63687.png" +dest_files=["res://.godot/imported/char_cat_outline_3 #63687.png-c5d5d8df7c33961272c065db19af4a98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_cat_outline_3.png b/extracted/Sprite/char_cat_outline_3.png new file mode 100644 index 0000000..ec2cce5 --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93055328361fb14b3f75c210bdd0e0a080b5b5efa4eeedd7e2bc50db8c048057 +size 11686 diff --git a/extracted/Sprite/char_cat_outline_3.png.import b/extracted/Sprite/char_cat_outline_3.png.import new file mode 100644 index 0000000..2b45d6f --- /dev/null +++ b/extracted/Sprite/char_cat_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0y2ck7mptulr" +path="res://.godot/imported/char_cat_outline_3.png-79d3cdabfd74450e67dd787e0e160435.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_cat_outline_3.png" +dest_files=["res://.godot/imported/char_cat_outline_3.png-79d3cdabfd74450e67dd787e0e160435.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_0 #64696.png b/extracted/Sprite/char_child1_outline_0 #64696.png new file mode 100644 index 0000000..9710e97 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_0 #64696.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0d66a5bd30c9b973266080a8f890af5ed81f37ca098020ab29c9a40efc94a9 +size 41854 diff --git a/extracted/Sprite/char_child1_outline_0 #64696.png.import b/extracted/Sprite/char_child1_outline_0 #64696.png.import new file mode 100644 index 0000000..8214a92 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_0 #64696.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqli0qgtox77h" +path="res://.godot/imported/char_child1_outline_0 #64696.png-3a3e769b89957878bfbec9fc6d494726.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_0 #64696.png" +dest_files=["res://.godot/imported/char_child1_outline_0 #64696.png-3a3e769b89957878bfbec9fc6d494726.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_0.png b/extracted/Sprite/char_child1_outline_0.png new file mode 100644 index 0000000..701df1b --- /dev/null +++ b/extracted/Sprite/char_child1_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e31ca74c9ee240abb1061af09ebc022db35ae3ce9da3842b37e9789afe7921 +size 49099 diff --git a/extracted/Sprite/char_child1_outline_0.png.import b/extracted/Sprite/char_child1_outline_0.png.import new file mode 100644 index 0000000..31e4a1c --- /dev/null +++ b/extracted/Sprite/char_child1_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djd8acwu3ad6f" +path="res://.godot/imported/char_child1_outline_0.png-08078da91080d8b3819f95b1fa2013c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_0.png" +dest_files=["res://.godot/imported/char_child1_outline_0.png-08078da91080d8b3819f95b1fa2013c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_1 #64688.png b/extracted/Sprite/char_child1_outline_1 #64688.png new file mode 100644 index 0000000..3c5e638 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_1 #64688.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe95cc32162b488c9e76db45e5187797cc422e0aac1228f8f4c98c98e6e148b +size 35842 diff --git a/extracted/Sprite/char_child1_outline_1 #64688.png.import b/extracted/Sprite/char_child1_outline_1 #64688.png.import new file mode 100644 index 0000000..71cc831 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_1 #64688.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx5mua81ctma3" +path="res://.godot/imported/char_child1_outline_1 #64688.png-8a2a6267f1e7c93b362358603f25d60b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_1 #64688.png" +dest_files=["res://.godot/imported/char_child1_outline_1 #64688.png-8a2a6267f1e7c93b362358603f25d60b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_1.png b/extracted/Sprite/char_child1_outline_1.png new file mode 100644 index 0000000..ac90f5f --- /dev/null +++ b/extracted/Sprite/char_child1_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaef8c46692a0d549713febee412eb64e83e0e8e97d6fb3b8d6410ed9d58b2aa +size 42995 diff --git a/extracted/Sprite/char_child1_outline_1.png.import b/extracted/Sprite/char_child1_outline_1.png.import new file mode 100644 index 0000000..a6b9dbd --- /dev/null +++ b/extracted/Sprite/char_child1_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddqw7pijbuog4" +path="res://.godot/imported/char_child1_outline_1.png-032bbd21f657020ebb9e577bec082a3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_1.png" +dest_files=["res://.godot/imported/char_child1_outline_1.png-032bbd21f657020ebb9e577bec082a3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_2 #63581.png b/extracted/Sprite/char_child1_outline_2 #63581.png new file mode 100644 index 0000000..39a2756 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_2 #63581.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0361e4c160e5494ec30f24e0b87247d928892018b1c94a9a605c1bb5ecbb2b6 +size 21370 diff --git a/extracted/Sprite/char_child1_outline_2 #63581.png.import b/extracted/Sprite/char_child1_outline_2 #63581.png.import new file mode 100644 index 0000000..aa99106 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_2 #63581.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpuo10xx3i1y3" +path="res://.godot/imported/char_child1_outline_2 #63581.png-b855003996c190a45c76c705b28e39c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_2 #63581.png" +dest_files=["res://.godot/imported/char_child1_outline_2 #63581.png-b855003996c190a45c76c705b28e39c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_2.png b/extracted/Sprite/char_child1_outline_2.png new file mode 100644 index 0000000..c72941c --- /dev/null +++ b/extracted/Sprite/char_child1_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af605a93bbf1755179e378b38822622504b25e1805cedb3af1fa96a0c21dc87 +size 17395 diff --git a/extracted/Sprite/char_child1_outline_2.png.import b/extracted/Sprite/char_child1_outline_2.png.import new file mode 100644 index 0000000..ee740f5 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwt4tmiask55o" +path="res://.godot/imported/char_child1_outline_2.png-1a1f5266d3be793fb79949919b9c170f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_2.png" +dest_files=["res://.godot/imported/char_child1_outline_2.png-1a1f5266d3be793fb79949919b9c170f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_3 #63634.png b/extracted/Sprite/char_child1_outline_3 #63634.png new file mode 100644 index 0000000..9d51cee --- /dev/null +++ b/extracted/Sprite/char_child1_outline_3 #63634.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad12926209d4c48b5db765bf0e65e853534e0e77f4a5f4a2e68b2238e2ccd92 +size 13762 diff --git a/extracted/Sprite/char_child1_outline_3 #63634.png.import b/extracted/Sprite/char_child1_outline_3 #63634.png.import new file mode 100644 index 0000000..e34a567 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_3 #63634.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://booxeyr08yf6h" +path="res://.godot/imported/char_child1_outline_3 #63634.png-7466d9ba5954aa97c1757c80f0509448.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_3 #63634.png" +dest_files=["res://.godot/imported/char_child1_outline_3 #63634.png-7466d9ba5954aa97c1757c80f0509448.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_3.png b/extracted/Sprite/char_child1_outline_3.png new file mode 100644 index 0000000..f092cd2 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91cfc359df94d919607d563c45789b36573f07edf6cef1cb96e7f0a9ac5aea4e +size 9701 diff --git a/extracted/Sprite/char_child1_outline_3.png.import b/extracted/Sprite/char_child1_outline_3.png.import new file mode 100644 index 0000000..36ae122 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clfnyocv1gsni" +path="res://.godot/imported/char_child1_outline_3.png-7bf8861f6f00dc53dc540140170ac5f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_3.png" +dest_files=["res://.godot/imported/char_child1_outline_3.png-7bf8861f6f00dc53dc540140170ac5f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_4 #64614.png b/extracted/Sprite/char_child1_outline_4 #64614.png new file mode 100644 index 0000000..6ec9939 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_4 #64614.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d55f5f2fb7f721c53d9dff67e9a01a7849a3521b29db3fbbe1cc3707a186a2c +size 6040 diff --git a/extracted/Sprite/char_child1_outline_4 #64614.png.import b/extracted/Sprite/char_child1_outline_4 #64614.png.import new file mode 100644 index 0000000..29c7d2d --- /dev/null +++ b/extracted/Sprite/char_child1_outline_4 #64614.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfr3qwtvyayvh" +path="res://.godot/imported/char_child1_outline_4 #64614.png-fc25faec2289803e8559cc27ed4a00f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_4 #64614.png" +dest_files=["res://.godot/imported/char_child1_outline_4 #64614.png-fc25faec2289803e8559cc27ed4a00f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_4.png b/extracted/Sprite/char_child1_outline_4.png new file mode 100644 index 0000000..fc0521d --- /dev/null +++ b/extracted/Sprite/char_child1_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8707e74079e69cd7a10751566340528d01548bc92b644ebbcbc8b8c6a43fbd +size 8996 diff --git a/extracted/Sprite/char_child1_outline_4.png.import b/extracted/Sprite/char_child1_outline_4.png.import new file mode 100644 index 0000000..adf873e --- /dev/null +++ b/extracted/Sprite/char_child1_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqis1i38jfb4p" +path="res://.godot/imported/char_child1_outline_4.png-f391c202c8f452793c253dc67d3686a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_4.png" +dest_files=["res://.godot/imported/char_child1_outline_4.png-f391c202c8f452793c253dc67d3686a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_5 #64634.png b/extracted/Sprite/char_child1_outline_5 #64634.png new file mode 100644 index 0000000..32582d6 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_5 #64634.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3c426e3ad115d9d8b57baa97c8cbc9354db757d348493449de6011a2db5c77 +size 3626 diff --git a/extracted/Sprite/char_child1_outline_5 #64634.png.import b/extracted/Sprite/char_child1_outline_5 #64634.png.import new file mode 100644 index 0000000..e98e58b --- /dev/null +++ b/extracted/Sprite/char_child1_outline_5 #64634.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj5dajhcvnthj" +path="res://.godot/imported/char_child1_outline_5 #64634.png-913c019352224cc691841a0aff71616e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_5 #64634.png" +dest_files=["res://.godot/imported/char_child1_outline_5 #64634.png-913c019352224cc691841a0aff71616e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_5.png b/extracted/Sprite/char_child1_outline_5.png new file mode 100644 index 0000000..f5de55b --- /dev/null +++ b/extracted/Sprite/char_child1_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f5b72e75e83f643d0a041b6775209c57c634fafbcae43368887a02b91710f0 +size 6035 diff --git a/extracted/Sprite/char_child1_outline_5.png.import b/extracted/Sprite/char_child1_outline_5.png.import new file mode 100644 index 0000000..196a0df --- /dev/null +++ b/extracted/Sprite/char_child1_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqxcnj2wimevs" +path="res://.godot/imported/char_child1_outline_5.png-a85df33eed9e2ed6f217b61017959ade.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_5.png" +dest_files=["res://.godot/imported/char_child1_outline_5.png-a85df33eed9e2ed6f217b61017959ade.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_6 #64314.png b/extracted/Sprite/char_child1_outline_6 #64314.png new file mode 100644 index 0000000..9f04457 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_6 #64314.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d06c7e58b72c70bcc0902d74fe7d3c9c151ab27ae708de4691f04c48420d2c0 +size 5007 diff --git a/extracted/Sprite/char_child1_outline_6 #64314.png.import b/extracted/Sprite/char_child1_outline_6 #64314.png.import new file mode 100644 index 0000000..b95d173 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_6 #64314.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr7yrgua2vlir" +path="res://.godot/imported/char_child1_outline_6 #64314.png-c890699773b033559ac75e1d89d9246a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_6 #64314.png" +dest_files=["res://.godot/imported/char_child1_outline_6 #64314.png-c890699773b033559ac75e1d89d9246a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child1_outline_6.png b/extracted/Sprite/char_child1_outline_6.png new file mode 100644 index 0000000..c34b0b1 --- /dev/null +++ b/extracted/Sprite/char_child1_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8191df3699d046c426186320aa6ec3a7b3362d6cb288df58aea2e471237bbebb +size 3030 diff --git a/extracted/Sprite/char_child1_outline_6.png.import b/extracted/Sprite/char_child1_outline_6.png.import new file mode 100644 index 0000000..c7939fb --- /dev/null +++ b/extracted/Sprite/char_child1_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xig5g4mkgn6r" +path="res://.godot/imported/char_child1_outline_6.png-365ca38f6786baeea21f49eae02b76bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child1_outline_6.png" +dest_files=["res://.godot/imported/char_child1_outline_6.png-365ca38f6786baeea21f49eae02b76bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_0 #64305.png b/extracted/Sprite/char_child2_outline_0 #64305.png new file mode 100644 index 0000000..84a9e14 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_0 #64305.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c99abfc46a8c49ab9401eb6f3cd8657c89bebdeaa3f5bab5571a2eab4aa7dd +size 37608 diff --git a/extracted/Sprite/char_child2_outline_0 #64305.png.import b/extracted/Sprite/char_child2_outline_0 #64305.png.import new file mode 100644 index 0000000..233a3e6 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_0 #64305.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsb74vmvrl4bn" +path="res://.godot/imported/char_child2_outline_0 #64305.png-1c3a6a420c6a4b9e8459376d4979086c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_0 #64305.png" +dest_files=["res://.godot/imported/char_child2_outline_0 #64305.png-1c3a6a420c6a4b9e8459376d4979086c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_0.png b/extracted/Sprite/char_child2_outline_0.png new file mode 100644 index 0000000..5847dc5 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71087b8b2aff01e1f51a9109d8693d89041601d41e087a0429319c4d1a298736 +size 31539 diff --git a/extracted/Sprite/char_child2_outline_0.png.import b/extracted/Sprite/char_child2_outline_0.png.import new file mode 100644 index 0000000..a89e13a --- /dev/null +++ b/extracted/Sprite/char_child2_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://378hg306vvnt" +path="res://.godot/imported/char_child2_outline_0.png-c40fad2c887929144c8707794b5ccae2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_0.png" +dest_files=["res://.godot/imported/char_child2_outline_0.png-c40fad2c887929144c8707794b5ccae2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_1 #64678.png b/extracted/Sprite/char_child2_outline_1 #64678.png new file mode 100644 index 0000000..84ec43d --- /dev/null +++ b/extracted/Sprite/char_child2_outline_1 #64678.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365ada066243878315f96e0cf8b9619c7cdb13802e069efaac1e5c6a23a1f3ae +size 24007 diff --git a/extracted/Sprite/char_child2_outline_1 #64678.png.import b/extracted/Sprite/char_child2_outline_1 #64678.png.import new file mode 100644 index 0000000..4e0a950 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_1 #64678.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmdel1c4n6dqa" +path="res://.godot/imported/char_child2_outline_1 #64678.png-5346ff8883293c61f8a5265aa848f756.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_1 #64678.png" +dest_files=["res://.godot/imported/char_child2_outline_1 #64678.png-5346ff8883293c61f8a5265aa848f756.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_1.png b/extracted/Sprite/char_child2_outline_1.png new file mode 100644 index 0000000..37f388b --- /dev/null +++ b/extracted/Sprite/char_child2_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aea790c2719dc1843ad5868950488ea8224338aee9f600236d51ef3c8cb2959 +size 30542 diff --git a/extracted/Sprite/char_child2_outline_1.png.import b/extracted/Sprite/char_child2_outline_1.png.import new file mode 100644 index 0000000..732af59 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm0dc5b1geqtk" +path="res://.godot/imported/char_child2_outline_1.png-6442633adf007445c928265e36280f78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_1.png" +dest_files=["res://.godot/imported/char_child2_outline_1.png-6442633adf007445c928265e36280f78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_2 #63652.png b/extracted/Sprite/char_child2_outline_2 #63652.png new file mode 100644 index 0000000..c7de783 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_2 #63652.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ba956c9b8179f3d49553461de2dff90ef6ba53861bed1792180a7673015a80 +size 16718 diff --git a/extracted/Sprite/char_child2_outline_2 #63652.png.import b/extracted/Sprite/char_child2_outline_2 #63652.png.import new file mode 100644 index 0000000..83f5898 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_2 #63652.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf3fv2u7wvlwi" +path="res://.godot/imported/char_child2_outline_2 #63652.png-ba096578e0f8198819da3cdb67c50e8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_2 #63652.png" +dest_files=["res://.godot/imported/char_child2_outline_2 #63652.png-ba096578e0f8198819da3cdb67c50e8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_2.png b/extracted/Sprite/char_child2_outline_2.png new file mode 100644 index 0000000..26af66f --- /dev/null +++ b/extracted/Sprite/char_child2_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee513493b044881a1dc7711e926489ee9b55dbf7e0a8969b9f3fc6de6ecb205 +size 13343 diff --git a/extracted/Sprite/char_child2_outline_2.png.import b/extracted/Sprite/char_child2_outline_2.png.import new file mode 100644 index 0000000..8ad78f5 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3grce7bysbip" +path="res://.godot/imported/char_child2_outline_2.png-e2ee6ab923987bdbdf29807c37b7478f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_2.png" +dest_files=["res://.godot/imported/char_child2_outline_2.png-e2ee6ab923987bdbdf29807c37b7478f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_3 #64358.png b/extracted/Sprite/char_child2_outline_3 #64358.png new file mode 100644 index 0000000..09943a7 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_3 #64358.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bd30ebf1a9a4b3007b496602eebf2724501b2096a7eca36de3b089ccf8c663 +size 15582 diff --git a/extracted/Sprite/char_child2_outline_3 #64358.png.import b/extracted/Sprite/char_child2_outline_3 #64358.png.import new file mode 100644 index 0000000..e265d1d --- /dev/null +++ b/extracted/Sprite/char_child2_outline_3 #64358.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biabk5h1jl14n" +path="res://.godot/imported/char_child2_outline_3 #64358.png-87bb1b87f13ae36eafee04f1764b44a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_3 #64358.png" +dest_files=["res://.godot/imported/char_child2_outline_3 #64358.png-87bb1b87f13ae36eafee04f1764b44a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_3.png b/extracted/Sprite/char_child2_outline_3.png new file mode 100644 index 0000000..5aed6d5 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f0eb992a0f2d57e207e92ba3341a2f5b43e282bced667393d6aefb004e6c3d +size 12528 diff --git a/extracted/Sprite/char_child2_outline_3.png.import b/extracted/Sprite/char_child2_outline_3.png.import new file mode 100644 index 0000000..8a6b597 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c730bm6t2cgr1" +path="res://.godot/imported/char_child2_outline_3.png-df54cc77e5688a60ea32ca27260924a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_3.png" +dest_files=["res://.godot/imported/char_child2_outline_3.png-df54cc77e5688a60ea32ca27260924a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_4 #63721.png b/extracted/Sprite/char_child2_outline_4 #63721.png new file mode 100644 index 0000000..06658e9 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_4 #63721.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1575054f1272186671601bb9d6614214aff1a11e13f9a3068194bb06e8c3f457 +size 6212 diff --git a/extracted/Sprite/char_child2_outline_4 #63721.png.import b/extracted/Sprite/char_child2_outline_4 #63721.png.import new file mode 100644 index 0000000..4332953 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_4 #63721.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buc68pahujbm3" +path="res://.godot/imported/char_child2_outline_4 #63721.png-c56bc05b2e3eb427e22f651739a4dc33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_4 #63721.png" +dest_files=["res://.godot/imported/char_child2_outline_4 #63721.png-c56bc05b2e3eb427e22f651739a4dc33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_4.png b/extracted/Sprite/char_child2_outline_4.png new file mode 100644 index 0000000..29eb0c1 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7fec608d2e48bf30950f9f5f79c4111cb9b3de0c16c60dfd670220e3b2e4ae +size 3867 diff --git a/extracted/Sprite/char_child2_outline_4.png.import b/extracted/Sprite/char_child2_outline_4.png.import new file mode 100644 index 0000000..0fec4ad --- /dev/null +++ b/extracted/Sprite/char_child2_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckeetkxxjdow3" +path="res://.godot/imported/char_child2_outline_4.png-fde7fc8907e6c5761b8e1740b65422b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_4.png" +dest_files=["res://.godot/imported/char_child2_outline_4.png-fde7fc8907e6c5761b8e1740b65422b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_5 #64567.png b/extracted/Sprite/char_child2_outline_5 #64567.png new file mode 100644 index 0000000..b1b9789 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_5 #64567.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d4f9f56c6dad9167a3a224db103bbbc79db2131089a6c3412dd057c41299b9 +size 3471 diff --git a/extracted/Sprite/char_child2_outline_5 #64567.png.import b/extracted/Sprite/char_child2_outline_5 #64567.png.import new file mode 100644 index 0000000..71e2dae --- /dev/null +++ b/extracted/Sprite/char_child2_outline_5 #64567.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvxr7yeeb08eo" +path="res://.godot/imported/char_child2_outline_5 #64567.png-d1e00550c4d10ff337aef54703d50be1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_5 #64567.png" +dest_files=["res://.godot/imported/char_child2_outline_5 #64567.png-d1e00550c4d10ff337aef54703d50be1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_5.png b/extracted/Sprite/char_child2_outline_5.png new file mode 100644 index 0000000..1f504c0 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd88bd70e0615c0ac7c4e450564af91ba7a8712c93a8f3fdc00fcf76a238d0c0 +size 5651 diff --git a/extracted/Sprite/char_child2_outline_5.png.import b/extracted/Sprite/char_child2_outline_5.png.import new file mode 100644 index 0000000..cd9f70f --- /dev/null +++ b/extracted/Sprite/char_child2_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpsyw4rapfbll" +path="res://.godot/imported/char_child2_outline_5.png-af357caa515d28febfdcdf2b6a47454e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_5.png" +dest_files=["res://.godot/imported/char_child2_outline_5.png-af357caa515d28febfdcdf2b6a47454e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_6 #64526.png b/extracted/Sprite/char_child2_outline_6 #64526.png new file mode 100644 index 0000000..aa3bc5f --- /dev/null +++ b/extracted/Sprite/char_child2_outline_6 #64526.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaac43bc07ef5256a3010ec025f09b6a10619c60035eae837eaa61b4de7b4de0 +size 8103 diff --git a/extracted/Sprite/char_child2_outline_6 #64526.png.import b/extracted/Sprite/char_child2_outline_6 #64526.png.import new file mode 100644 index 0000000..145a2cc --- /dev/null +++ b/extracted/Sprite/char_child2_outline_6 #64526.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b44utqn7vp53h" +path="res://.godot/imported/char_child2_outline_6 #64526.png-9a2f0ddef6d016da06ead679a7b6aed4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_6 #64526.png" +dest_files=["res://.godot/imported/char_child2_outline_6 #64526.png-9a2f0ddef6d016da06ead679a7b6aed4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_child2_outline_6.png b/extracted/Sprite/char_child2_outline_6.png new file mode 100644 index 0000000..690cf51 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3759668cd719afbe78a9685d9127442c970cc58a4f6d37beb93a5ef5e0ce80c +size 11518 diff --git a/extracted/Sprite/char_child2_outline_6.png.import b/extracted/Sprite/char_child2_outline_6.png.import new file mode 100644 index 0000000..a434969 --- /dev/null +++ b/extracted/Sprite/char_child2_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o76n8d4agr2q" +path="res://.godot/imported/char_child2_outline_6.png-de9d570c5c59d184c52c0b057726cf8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_child2_outline_6.png" +dest_files=["res://.godot/imported/char_child2_outline_6.png-de9d570c5c59d184c52c0b057726cf8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_0 #63588.png b/extracted/Sprite/char_crab_outline_0 #63588.png new file mode 100644 index 0000000..a662fa7 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_0 #63588.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db05617fe02776cc8fc3f20ad545d914810138ee33e50d6890fb793dc4ca1e3 +size 14432 diff --git a/extracted/Sprite/char_crab_outline_0 #63588.png.import b/extracted/Sprite/char_crab_outline_0 #63588.png.import new file mode 100644 index 0000000..3b83569 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_0 #63588.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dchsmy12t6dt4" +path="res://.godot/imported/char_crab_outline_0 #63588.png-78581d3a8d2e5c7ae0331ada8ab5fc45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_0 #63588.png" +dest_files=["res://.godot/imported/char_crab_outline_0 #63588.png-78581d3a8d2e5c7ae0331ada8ab5fc45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_0.png b/extracted/Sprite/char_crab_outline_0.png new file mode 100644 index 0000000..71ab9f9 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd94f02557c6e75058a5a1abc7110d6aeaf4d071d6f557d66b73989e4f3e7781 +size 12043 diff --git a/extracted/Sprite/char_crab_outline_0.png.import b/extracted/Sprite/char_crab_outline_0.png.import new file mode 100644 index 0000000..7b9a749 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ttim7w322koe" +path="res://.godot/imported/char_crab_outline_0.png-1e100c01ba9aba3a217855d134628a16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_0.png" +dest_files=["res://.godot/imported/char_crab_outline_0.png-1e100c01ba9aba3a217855d134628a16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_1 #63680.png b/extracted/Sprite/char_crab_outline_1 #63680.png new file mode 100644 index 0000000..180a124 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_1 #63680.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39a8f08c2f97b5c1fee3cbd0bd6943b139361a89d406bedd7c5b7864f6a627a +size 9167 diff --git a/extracted/Sprite/char_crab_outline_1 #63680.png.import b/extracted/Sprite/char_crab_outline_1 #63680.png.import new file mode 100644 index 0000000..9eac303 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_1 #63680.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byuikj58ehi4t" +path="res://.godot/imported/char_crab_outline_1 #63680.png-b8ff701b3f99cf05efe51d1a8e4e436b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_1 #63680.png" +dest_files=["res://.godot/imported/char_crab_outline_1 #63680.png-b8ff701b3f99cf05efe51d1a8e4e436b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_1.png b/extracted/Sprite/char_crab_outline_1.png new file mode 100644 index 0000000..9ec707f --- /dev/null +++ b/extracted/Sprite/char_crab_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368487fa5d44ddbe0522fa169c04673a53746c66bfbf7cf8fc12debb0dc9f410 +size 6861 diff --git a/extracted/Sprite/char_crab_outline_1.png.import b/extracted/Sprite/char_crab_outline_1.png.import new file mode 100644 index 0000000..c0c4bce --- /dev/null +++ b/extracted/Sprite/char_crab_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvadywtg4b7jr" +path="res://.godot/imported/char_crab_outline_1.png-d79c11f3c4863539a2f835dcbf11640c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_1.png" +dest_files=["res://.godot/imported/char_crab_outline_1.png-d79c11f3c4863539a2f835dcbf11640c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_2 #64293.png b/extracted/Sprite/char_crab_outline_2 #64293.png new file mode 100644 index 0000000..58b24fc --- /dev/null +++ b/extracted/Sprite/char_crab_outline_2 #64293.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20172f020af41e17d89a93f6f022e77e3859444d5363c33d2f061ff1477c72e +size 5590 diff --git a/extracted/Sprite/char_crab_outline_2 #64293.png.import b/extracted/Sprite/char_crab_outline_2 #64293.png.import new file mode 100644 index 0000000..22a28fe --- /dev/null +++ b/extracted/Sprite/char_crab_outline_2 #64293.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv5ueb0uy5t1r" +path="res://.godot/imported/char_crab_outline_2 #64293.png-ea28b5a26ed6bbc1161ba99c3886da4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_2 #64293.png" +dest_files=["res://.godot/imported/char_crab_outline_2 #64293.png-ea28b5a26ed6bbc1161ba99c3886da4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_2.png b/extracted/Sprite/char_crab_outline_2.png new file mode 100644 index 0000000..67ac151 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894720401565642d57deeb552a2bca5de3e5b7caf13ed27974226fc4eec2aa76 +size 4056 diff --git a/extracted/Sprite/char_crab_outline_2.png.import b/extracted/Sprite/char_crab_outline_2.png.import new file mode 100644 index 0000000..244b04a --- /dev/null +++ b/extracted/Sprite/char_crab_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c601jgbaeuld" +path="res://.godot/imported/char_crab_outline_2.png-77ffbf352a0c7eb03e4ae89988ca673b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_2.png" +dest_files=["res://.godot/imported/char_crab_outline_2.png-77ffbf352a0c7eb03e4ae89988ca673b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_3 #63667.png b/extracted/Sprite/char_crab_outline_3 #63667.png new file mode 100644 index 0000000..4b80e7e --- /dev/null +++ b/extracted/Sprite/char_crab_outline_3 #63667.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85e712576b8403704b78a965855ae23fe53dbc6f4ccd24f39a64ff8707de5f0 +size 6998 diff --git a/extracted/Sprite/char_crab_outline_3 #63667.png.import b/extracted/Sprite/char_crab_outline_3 #63667.png.import new file mode 100644 index 0000000..6e301f8 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_3 #63667.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2yq81fpa1jp2" +path="res://.godot/imported/char_crab_outline_3 #63667.png-d1d5eafd448890b372f9e61ad7726b71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_3 #63667.png" +dest_files=["res://.godot/imported/char_crab_outline_3 #63667.png-d1d5eafd448890b372f9e61ad7726b71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_crab_outline_3.png b/extracted/Sprite/char_crab_outline_3.png new file mode 100644 index 0000000..145b142 --- /dev/null +++ b/extracted/Sprite/char_crab_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b0165087215b72feb2b9e04fab374f23f16c01b8b2ae144c428f38eb85d5c9 +size 5068 diff --git a/extracted/Sprite/char_crab_outline_3.png.import b/extracted/Sprite/char_crab_outline_3.png.import new file mode 100644 index 0000000..1e60fca --- /dev/null +++ b/extracted/Sprite/char_crab_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://norkf2yqcv8h" +path="res://.godot/imported/char_crab_outline_3.png-c918583c63324cf15b93bada10ee5a4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_crab_outline_3.png" +dest_files=["res://.godot/imported/char_crab_outline_3.png-c918583c63324cf15b93bada10ee5a4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_0 #64453.png b/extracted/Sprite/char_dog_outline_0 #64453.png new file mode 100644 index 0000000..0f84160 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64453.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cc4e22bdb230cdf3c7bd34b71427364c05d625ba15025cadb8cdca25cf3349 +size 15674 diff --git a/extracted/Sprite/char_dog_outline_0 #64453.png.import b/extracted/Sprite/char_dog_outline_0 #64453.png.import new file mode 100644 index 0000000..09bfd71 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64453.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://epc7vaqflapi" +path="res://.godot/imported/char_dog_outline_0 #64453.png-2805b672c8c0e3145706bc78feb95f5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_0 #64453.png" +dest_files=["res://.godot/imported/char_dog_outline_0 #64453.png-2805b672c8c0e3145706bc78feb95f5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_0 #64672.png b/extracted/Sprite/char_dog_outline_0 #64672.png new file mode 100644 index 0000000..261e245 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64672.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f6ef96cae8ec2862286f496a6d128018851d435af547f86011d2ea2d4464b9 +size 26293 diff --git a/extracted/Sprite/char_dog_outline_0 #64672.png.import b/extracted/Sprite/char_dog_outline_0 #64672.png.import new file mode 100644 index 0000000..986a894 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64672.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3d206pxsjdre" +path="res://.godot/imported/char_dog_outline_0 #64672.png-d614b4ede36ec2dbf04420f177143280.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_0 #64672.png" +dest_files=["res://.godot/imported/char_dog_outline_0 #64672.png-d614b4ede36ec2dbf04420f177143280.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_0 #64673.png b/extracted/Sprite/char_dog_outline_0 #64673.png new file mode 100644 index 0000000..941b378 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64673.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65832735f67fd2c886c4d2c8936c3fd79217c6c83433848c5245dd377baa49d8 +size 22503 diff --git a/extracted/Sprite/char_dog_outline_0 #64673.png.import b/extracted/Sprite/char_dog_outline_0 #64673.png.import new file mode 100644 index 0000000..361f72b --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0 #64673.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blem47qhhyfsn" +path="res://.godot/imported/char_dog_outline_0 #64673.png-b490f1c8f55ea4b92ce373cfb73d2d04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_0 #64673.png" +dest_files=["res://.godot/imported/char_dog_outline_0 #64673.png-b490f1c8f55ea4b92ce373cfb73d2d04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_0.png b/extracted/Sprite/char_dog_outline_0.png new file mode 100644 index 0000000..4fd28c9 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e72bc131176e829b180e8f47fe21c2df841cebec232ff2ae2365b4baf39b4c +size 18500 diff --git a/extracted/Sprite/char_dog_outline_0.png.import b/extracted/Sprite/char_dog_outline_0.png.import new file mode 100644 index 0000000..2d98803 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0wwlskikvcy4" +path="res://.godot/imported/char_dog_outline_0.png-e3588637982dd82b59a65b9525d7bfeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_0.png" +dest_files=["res://.godot/imported/char_dog_outline_0.png-e3588637982dd82b59a65b9525d7bfeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_1 #64271.png b/extracted/Sprite/char_dog_outline_1 #64271.png new file mode 100644 index 0000000..192c799 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64271.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39223e0a2cf9a23229c50e6e64e9794e8fc3a9959f1bcbf1304ef0d98177e945 +size 4343 diff --git a/extracted/Sprite/char_dog_outline_1 #64271.png.import b/extracted/Sprite/char_dog_outline_1 #64271.png.import new file mode 100644 index 0000000..d25a4a5 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64271.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyq6pgmg1gdt4" +path="res://.godot/imported/char_dog_outline_1 #64271.png-5253be48744869476df2bc8e7b76e15b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_1 #64271.png" +dest_files=["res://.godot/imported/char_dog_outline_1 #64271.png-5253be48744869476df2bc8e7b76e15b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_1 #64675.png b/extracted/Sprite/char_dog_outline_1 #64675.png new file mode 100644 index 0000000..e383b6d --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64675.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2645d2a8ee8ea51c69aefe7f41bbbbb7361191e0c0335d8a8aee6f54f13c2546 +size 7917 diff --git a/extracted/Sprite/char_dog_outline_1 #64675.png.import b/extracted/Sprite/char_dog_outline_1 #64675.png.import new file mode 100644 index 0000000..c1172f8 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64675.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4tdhh7r4if1d" +path="res://.godot/imported/char_dog_outline_1 #64675.png-a91b1056d02d83adb70f1e39fb0025fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_1 #64675.png" +dest_files=["res://.godot/imported/char_dog_outline_1 #64675.png-a91b1056d02d83adb70f1e39fb0025fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_1 #64676.png b/extracted/Sprite/char_dog_outline_1 #64676.png new file mode 100644 index 0000000..e5a6693 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64676.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be5dbe28df85cdd16283ea78794882eab3a3c2d5e51c56cff3b51e19fd22725 +size 5426 diff --git a/extracted/Sprite/char_dog_outline_1 #64676.png.import b/extracted/Sprite/char_dog_outline_1 #64676.png.import new file mode 100644 index 0000000..08c4e93 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1 #64676.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hd6eokx6d6aw" +path="res://.godot/imported/char_dog_outline_1 #64676.png-8130abac41ae1c8fcf4ca54ec8101da3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_1 #64676.png" +dest_files=["res://.godot/imported/char_dog_outline_1 #64676.png-8130abac41ae1c8fcf4ca54ec8101da3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_1.png b/extracted/Sprite/char_dog_outline_1.png new file mode 100644 index 0000000..97450aa --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3cf0fe8ea230fabb3097c36a37b076ab3c5e535c9821031341084fbcb96c08 +size 6004 diff --git a/extracted/Sprite/char_dog_outline_1.png.import b/extracted/Sprite/char_dog_outline_1.png.import new file mode 100644 index 0000000..101e03f --- /dev/null +++ b/extracted/Sprite/char_dog_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co036ubiimvhe" +path="res://.godot/imported/char_dog_outline_1.png-14793da1876b2782d4f5375c426deb72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_1.png" +dest_files=["res://.godot/imported/char_dog_outline_1.png-14793da1876b2782d4f5375c426deb72.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_2 #63519.png b/extracted/Sprite/char_dog_outline_2 #63519.png new file mode 100644 index 0000000..56ad3e1 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63519.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f91deed6d8df85048bdbcaa41c0e77becdc843adb6f17a00842ddde10d46d5 +size 3308 diff --git a/extracted/Sprite/char_dog_outline_2 #63519.png.import b/extracted/Sprite/char_dog_outline_2 #63519.png.import new file mode 100644 index 0000000..78b8a91 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63519.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg1c2ekon31j0" +path="res://.godot/imported/char_dog_outline_2 #63519.png-012180b7c47f90a52edc8a17918c351b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_2 #63519.png" +dest_files=["res://.godot/imported/char_dog_outline_2 #63519.png-012180b7c47f90a52edc8a17918c351b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_2 #63643.png b/extracted/Sprite/char_dog_outline_2 #63643.png new file mode 100644 index 0000000..3986efc --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63643.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1424c7f9953da86e775767ce305bdaf460940d18a55b9d33989ead33ec97077 +size 3616 diff --git a/extracted/Sprite/char_dog_outline_2 #63643.png.import b/extracted/Sprite/char_dog_outline_2 #63643.png.import new file mode 100644 index 0000000..6c867ce --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63643.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bflx8kxibq5im" +path="res://.godot/imported/char_dog_outline_2 #63643.png-d6105fe75f66379360ea6f8bb90a58fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_2 #63643.png" +dest_files=["res://.godot/imported/char_dog_outline_2 #63643.png-d6105fe75f66379360ea6f8bb90a58fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_2 #63644.png b/extracted/Sprite/char_dog_outline_2 #63644.png new file mode 100644 index 0000000..49aa7fd --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63644.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b20d4a6086eecda0ff1183f66449f902bc669b5f5982ccacb5eaeddb4fc0b33 +size 2536 diff --git a/extracted/Sprite/char_dog_outline_2 #63644.png.import b/extracted/Sprite/char_dog_outline_2 #63644.png.import new file mode 100644 index 0000000..5527ad3 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2 #63644.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deobgni5k1asb" +path="res://.godot/imported/char_dog_outline_2 #63644.png-8ec8f579f96b2279f0b678d9b0a98dab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_2 #63644.png" +dest_files=["res://.godot/imported/char_dog_outline_2 #63644.png-8ec8f579f96b2279f0b678d9b0a98dab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_2.png b/extracted/Sprite/char_dog_outline_2.png new file mode 100644 index 0000000..e95b5dd --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ab136c4f24790ff81431904780d168ad4f1eb88504b4522bd87e0028ec2030 +size 4937 diff --git a/extracted/Sprite/char_dog_outline_2.png.import b/extracted/Sprite/char_dog_outline_2.png.import new file mode 100644 index 0000000..185f7d8 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyaje242qs0x4" +path="res://.godot/imported/char_dog_outline_2.png-54a5ea3b4d8da421acf5ce7fab96db3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_2.png" +dest_files=["res://.godot/imported/char_dog_outline_2.png-54a5ea3b4d8da421acf5ce7fab96db3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_3 #63400.png b/extracted/Sprite/char_dog_outline_3 #63400.png new file mode 100644 index 0000000..adfc428 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #63400.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6e2010b762c6a96e722c58934413069f8f3a1d6230697a64d5f363f1f8f939 +size 10602 diff --git a/extracted/Sprite/char_dog_outline_3 #63400.png.import b/extracted/Sprite/char_dog_outline_3 #63400.png.import new file mode 100644 index 0000000..17db7d7 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #63400.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3bysmousm8pe" +path="res://.godot/imported/char_dog_outline_3 #63400.png-b571950281344558303cc3dbf2372e05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_3 #63400.png" +dest_files=["res://.godot/imported/char_dog_outline_3 #63400.png-b571950281344558303cc3dbf2372e05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_3 #64406.png b/extracted/Sprite/char_dog_outline_3 #64406.png new file mode 100644 index 0000000..50aa46d --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #64406.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dfdc5294815a7f96c868b2f4034be830b7f578c628eb943b83852b71f4fe4a0 +size 11644 diff --git a/extracted/Sprite/char_dog_outline_3 #64406.png.import b/extracted/Sprite/char_dog_outline_3 #64406.png.import new file mode 100644 index 0000000..97597ff --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #64406.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0x2jx4cgyh48" +path="res://.godot/imported/char_dog_outline_3 #64406.png-c18d2cb151525f037a2ffbb474c4ae7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_3 #64406.png" +dest_files=["res://.godot/imported/char_dog_outline_3 #64406.png-c18d2cb151525f037a2ffbb474c4ae7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_3 #64407.png b/extracted/Sprite/char_dog_outline_3 #64407.png new file mode 100644 index 0000000..a817002 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #64407.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16338aee7c5bc0d946a85638f8df8584f504bd9e6f20398e86a225b8ea77bbf4 +size 9341 diff --git a/extracted/Sprite/char_dog_outline_3 #64407.png.import b/extracted/Sprite/char_dog_outline_3 #64407.png.import new file mode 100644 index 0000000..43f201e --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3 #64407.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsq03to3423ii" +path="res://.godot/imported/char_dog_outline_3 #64407.png-8e646d7c91554363b2b161ef1d2c7d10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_3 #64407.png" +dest_files=["res://.godot/imported/char_dog_outline_3 #64407.png-8e646d7c91554363b2b161ef1d2c7d10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_dog_outline_3.png b/extracted/Sprite/char_dog_outline_3.png new file mode 100644 index 0000000..fe334e9 --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eede86df49f3846f3d007db8b5dc13b89fbfe97b4bda1459dfbea1a593414dc +size 14280 diff --git a/extracted/Sprite/char_dog_outline_3.png.import b/extracted/Sprite/char_dog_outline_3.png.import new file mode 100644 index 0000000..712c79c --- /dev/null +++ b/extracted/Sprite/char_dog_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k1soi0y5mq8h" +path="res://.godot/imported/char_dog_outline_3.png-96d46e45af607fbe036b81521681fc5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_dog_outline_3.png" +dest_files=["res://.godot/imported/char_dog_outline_3.png-96d46e45af607fbe036b81521681fc5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_0 #64689.png b/extracted/Sprite/char_explorer2_outline_0 #64689.png new file mode 100644 index 0000000..d68ce04 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_0 #64689.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f2f428449ff667296f9d519918f930ef664ceb44d0543362681e79d1e6bcef +size 26124 diff --git a/extracted/Sprite/char_explorer2_outline_0 #64689.png.import b/extracted/Sprite/char_explorer2_outline_0 #64689.png.import new file mode 100644 index 0000000..8543137 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_0 #64689.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch08322wluu8w" +path="res://.godot/imported/char_explorer2_outline_0 #64689.png-e5862f8105142937c6fe689e957c73aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_0 #64689.png" +dest_files=["res://.godot/imported/char_explorer2_outline_0 #64689.png-e5862f8105142937c6fe689e957c73aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_0.png b/extracted/Sprite/char_explorer2_outline_0.png new file mode 100644 index 0000000..bb11405 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9cd390114085a5f1b146116e8a884f95e85ba9e60a39cc65e7d2dd8c3b8e66 +size 31915 diff --git a/extracted/Sprite/char_explorer2_outline_0.png.import b/extracted/Sprite/char_explorer2_outline_0.png.import new file mode 100644 index 0000000..c3f70ae --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5yuq3i6s43es" +path="res://.godot/imported/char_explorer2_outline_0.png-3fe61f8fabb75ae950a2a7c66b9c969b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_0.png" +dest_files=["res://.godot/imported/char_explorer2_outline_0.png-3fe61f8fabb75ae950a2a7c66b9c969b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_1 #63592.png b/extracted/Sprite/char_explorer2_outline_1 #63592.png new file mode 100644 index 0000000..9595fda --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_1 #63592.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9b7fe5b146bc6ec0fa35d808e1cd1679d7fe9352358e40701dfb9a12ce1288 +size 28799 diff --git a/extracted/Sprite/char_explorer2_outline_1 #63592.png.import b/extracted/Sprite/char_explorer2_outline_1 #63592.png.import new file mode 100644 index 0000000..08a68ff --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_1 #63592.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xhj20n0lcdqg" +path="res://.godot/imported/char_explorer2_outline_1 #63592.png-5a1d5d46dd11d89cb12ae3673eabaa91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_1 #63592.png" +dest_files=["res://.godot/imported/char_explorer2_outline_1 #63592.png-5a1d5d46dd11d89cb12ae3673eabaa91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_1.png b/extracted/Sprite/char_explorer2_outline_1.png new file mode 100644 index 0000000..272acd2 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418d69a3def803a5d78af1b10c66502b9723ee6883dc38e84395d662766ce445 +size 22976 diff --git a/extracted/Sprite/char_explorer2_outline_1.png.import b/extracted/Sprite/char_explorer2_outline_1.png.import new file mode 100644 index 0000000..b7a20aa --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtcnc8h1hvmci" +path="res://.godot/imported/char_explorer2_outline_1.png-24bcfbaba4ffd15797ca86aee30537c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_1.png" +dest_files=["res://.godot/imported/char_explorer2_outline_1.png-24bcfbaba4ffd15797ca86aee30537c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_2 #64524.png b/extracted/Sprite/char_explorer2_outline_2 #64524.png new file mode 100644 index 0000000..dc0c126 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_2 #64524.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44156c7fe9e51b235046d1caf6fe5d74992085e11d0bf3a3612a0fa8f3d04902 +size 19559 diff --git a/extracted/Sprite/char_explorer2_outline_2 #64524.png.import b/extracted/Sprite/char_explorer2_outline_2 #64524.png.import new file mode 100644 index 0000000..31a87fd --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_2 #64524.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhgogmjspnhxq" +path="res://.godot/imported/char_explorer2_outline_2 #64524.png-e6278d7b96f0dec87b077f1046b7a078.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_2 #64524.png" +dest_files=["res://.godot/imported/char_explorer2_outline_2 #64524.png-e6278d7b96f0dec87b077f1046b7a078.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_2.png b/extracted/Sprite/char_explorer2_outline_2.png new file mode 100644 index 0000000..7d9d437 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2aa63a1bae47cdb860b9cf79030c441bcccefafa7a94a331e953c76ef6b7aa7 +size 22956 diff --git a/extracted/Sprite/char_explorer2_outline_2.png.import b/extracted/Sprite/char_explorer2_outline_2.png.import new file mode 100644 index 0000000..1687d4b --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs6w8k77pbqof" +path="res://.godot/imported/char_explorer2_outline_2.png-38879eeef8f7b5ea49221329181508f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_2.png" +dest_files=["res://.godot/imported/char_explorer2_outline_2.png-38879eeef8f7b5ea49221329181508f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_3 #64466.png b/extracted/Sprite/char_explorer2_outline_3 #64466.png new file mode 100644 index 0000000..5cccea5 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_3 #64466.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4f524f2f9f984a60301781f232f623706a4d8a692a2177638862acc351439c +size 19282 diff --git a/extracted/Sprite/char_explorer2_outline_3 #64466.png.import b/extracted/Sprite/char_explorer2_outline_3 #64466.png.import new file mode 100644 index 0000000..43ba29c --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_3 #64466.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bddn75th8wa0f" +path="res://.godot/imported/char_explorer2_outline_3 #64466.png-b02f81bb584d6bccb9ae1a1816b1b0c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_3 #64466.png" +dest_files=["res://.godot/imported/char_explorer2_outline_3 #64466.png-b02f81bb584d6bccb9ae1a1816b1b0c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_3.png b/extracted/Sprite/char_explorer2_outline_3.png new file mode 100644 index 0000000..ee73ec1 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79103b2b3d0d53fa05bdfa5807e1bc8eedb9c09304d23a7b6c5be50b205e92d5 +size 15856 diff --git a/extracted/Sprite/char_explorer2_outline_3.png.import b/extracted/Sprite/char_explorer2_outline_3.png.import new file mode 100644 index 0000000..b157909 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rvclpdhussra" +path="res://.godot/imported/char_explorer2_outline_3.png-f23f261b86c8592fa9a0e9e50df9364d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_3.png" +dest_files=["res://.godot/imported/char_explorer2_outline_3.png-f23f261b86c8592fa9a0e9e50df9364d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_4 #64309.png b/extracted/Sprite/char_explorer2_outline_4 #64309.png new file mode 100644 index 0000000..62eebb9 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_4 #64309.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772ea6988809279b649d435bcdd3719890c9b3f67efa9d010cac8857265a1525 +size 5424 diff --git a/extracted/Sprite/char_explorer2_outline_4 #64309.png.import b/extracted/Sprite/char_explorer2_outline_4 #64309.png.import new file mode 100644 index 0000000..b393889 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_4 #64309.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4ps3f2rcuexi" +path="res://.godot/imported/char_explorer2_outline_4 #64309.png-7f520da7e9269e1f501691725d7139f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_4 #64309.png" +dest_files=["res://.godot/imported/char_explorer2_outline_4 #64309.png-7f520da7e9269e1f501691725d7139f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_4.png b/extracted/Sprite/char_explorer2_outline_4.png new file mode 100644 index 0000000..5c157a1 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a9935b9a2aa32b0c8deb0de0f6e1a1b738c142b5b8977120c147287209dbe2 +size 3779 diff --git a/extracted/Sprite/char_explorer2_outline_4.png.import b/extracted/Sprite/char_explorer2_outline_4.png.import new file mode 100644 index 0000000..91df966 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7xggsk2msueu" +path="res://.godot/imported/char_explorer2_outline_4.png-61384b7da064ef326428484c75763a57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_4.png" +dest_files=["res://.godot/imported/char_explorer2_outline_4.png-61384b7da064ef326428484c75763a57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_5 #64684.png b/extracted/Sprite/char_explorer2_outline_5 #64684.png new file mode 100644 index 0000000..62ae8f7 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_5 #64684.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026b74230151aaa107386702435fd1656fc4cab4fe38718ea8c21a562772b13c +size 5813 diff --git a/extracted/Sprite/char_explorer2_outline_5 #64684.png.import b/extracted/Sprite/char_explorer2_outline_5 #64684.png.import new file mode 100644 index 0000000..f0748fa --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_5 #64684.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g5mlb0ipc8hk" +path="res://.godot/imported/char_explorer2_outline_5 #64684.png-df91d30c0802eb0995afa79c8e4312fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_5 #64684.png" +dest_files=["res://.godot/imported/char_explorer2_outline_5 #64684.png-df91d30c0802eb0995afa79c8e4312fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_5.png b/extracted/Sprite/char_explorer2_outline_5.png new file mode 100644 index 0000000..f38dbdd --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6315f988e5c9ab6027f6a050cbd4b6c5f892ae838b42c0aebf3781f2c431e29 +size 7891 diff --git a/extracted/Sprite/char_explorer2_outline_5.png.import b/extracted/Sprite/char_explorer2_outline_5.png.import new file mode 100644 index 0000000..791c41b --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dprx75vdk0eou" +path="res://.godot/imported/char_explorer2_outline_5.png-c4589a7d2966e0f5456f47bac182bee6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_5.png" +dest_files=["res://.godot/imported/char_explorer2_outline_5.png-c4589a7d2966e0f5456f47bac182bee6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_6 #64674.png b/extracted/Sprite/char_explorer2_outline_6 #64674.png new file mode 100644 index 0000000..b1e48b4 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_6 #64674.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec3e00ba9a645a7eb92b0b052c6843fe25d8686dd9e69d4bdf7bf71f837ef35 +size 8226 diff --git a/extracted/Sprite/char_explorer2_outline_6 #64674.png.import b/extracted/Sprite/char_explorer2_outline_6 #64674.png.import new file mode 100644 index 0000000..7058311 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_6 #64674.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwhj4fux282o6" +path="res://.godot/imported/char_explorer2_outline_6 #64674.png-18a4f70d6b1c2022d0b26e08c2a5b186.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_6 #64674.png" +dest_files=["res://.godot/imported/char_explorer2_outline_6 #64674.png-18a4f70d6b1c2022d0b26e08c2a5b186.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_explorer2_outline_6.png b/extracted/Sprite/char_explorer2_outline_6.png new file mode 100644 index 0000000..22b0669 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edbc691a1bcbf54a1e2c3ffbf1f3cfc3e27e00520176ef08a8c6e868294f775a +size 11099 diff --git a/extracted/Sprite/char_explorer2_outline_6.png.import b/extracted/Sprite/char_explorer2_outline_6.png.import new file mode 100644 index 0000000..290d3a6 --- /dev/null +++ b/extracted/Sprite/char_explorer2_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yo1aftpcwn74" +path="res://.godot/imported/char_explorer2_outline_6.png-9db68ad60857fcdfc75e0834e9cda769.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_explorer2_outline_6.png" +dest_files=["res://.godot/imported/char_explorer2_outline_6.png-9db68ad60857fcdfc75e0834e9cda769.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_0 #64414.png b/extracted/Sprite/char_fairy2_Outline_0 #64414.png new file mode 100644 index 0000000..6ebe307 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_0 #64414.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58a06d84a799a61f3c81579ead22fc760df2797454d9e2782c4b1e59b87b6f6 +size 32356 diff --git a/extracted/Sprite/char_fairy2_Outline_0 #64414.png.import b/extracted/Sprite/char_fairy2_Outline_0 #64414.png.import new file mode 100644 index 0000000..c0616d9 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_0 #64414.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0niw0l23vt3f" +path="res://.godot/imported/char_fairy2_Outline_0 #64414.png-039401e05197268ada8f7edd05f51b0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_0 #64414.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_0 #64414.png-039401e05197268ada8f7edd05f51b0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_0.png b/extracted/Sprite/char_fairy2_Outline_0.png new file mode 100644 index 0000000..103259a --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936483c96593c1dd23e78839ecbe07646ff466bc3eb74063b3494dc34d25cd87 +size 27284 diff --git a/extracted/Sprite/char_fairy2_Outline_0.png.import b/extracted/Sprite/char_fairy2_Outline_0.png.import new file mode 100644 index 0000000..5e25be5 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g0sg8dsjhegh" +path="res://.godot/imported/char_fairy2_Outline_0.png-ec6a15964af362b872f536094bfc6990.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_0.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_0.png-ec6a15964af362b872f536094bfc6990.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_1 #63727.png b/extracted/Sprite/char_fairy2_Outline_1 #63727.png new file mode 100644 index 0000000..b3d29e6 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_1 #63727.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78db05972146df0f39d4d3309e890e88a8368f0499115a5a5b245deb6a55a3c3 +size 19195 diff --git a/extracted/Sprite/char_fairy2_Outline_1 #63727.png.import b/extracted/Sprite/char_fairy2_Outline_1 #63727.png.import new file mode 100644 index 0000000..b845ba2 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_1 #63727.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq244numob2xm" +path="res://.godot/imported/char_fairy2_Outline_1 #63727.png-d170d38bef654f20ffb702cdc38908c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_1 #63727.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_1 #63727.png-d170d38bef654f20ffb702cdc38908c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_1.png b/extracted/Sprite/char_fairy2_Outline_1.png new file mode 100644 index 0000000..7abc100 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bfb8b4b45a990fc91473b0e876484e485af5ee243dc7beed73fe1cdf136bd9 +size 14055 diff --git a/extracted/Sprite/char_fairy2_Outline_1.png.import b/extracted/Sprite/char_fairy2_Outline_1.png.import new file mode 100644 index 0000000..184b0e5 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0epiy6t1eoll" +path="res://.godot/imported/char_fairy2_Outline_1.png-d086df68b0ad8933e28a9f58775501bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_1.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_1.png-d086df68b0ad8933e28a9f58775501bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_2 #64393.png b/extracted/Sprite/char_fairy2_Outline_2 #64393.png new file mode 100644 index 0000000..4df6faf --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_2 #64393.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb54781c03428cdf99673022ac32dac45c09fc27ec01dc2029907869c4d736c +size 25863 diff --git a/extracted/Sprite/char_fairy2_Outline_2 #64393.png.import b/extracted/Sprite/char_fairy2_Outline_2 #64393.png.import new file mode 100644 index 0000000..fcdc7f4 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_2 #64393.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc1molvftkyn6" +path="res://.godot/imported/char_fairy2_Outline_2 #64393.png-37bdd171ee215fe07cc91b110fcc1eca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_2 #64393.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_2 #64393.png-37bdd171ee215fe07cc91b110fcc1eca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_2.png b/extracted/Sprite/char_fairy2_Outline_2.png new file mode 100644 index 0000000..dd1f4e2 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a888353f313cea2d9fe72bc5647e643a083d06832f46180fd2dc59fadfe5def1 +size 18259 diff --git a/extracted/Sprite/char_fairy2_Outline_2.png.import b/extracted/Sprite/char_fairy2_Outline_2.png.import new file mode 100644 index 0000000..5584543 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw54tn4fd0p2d" +path="res://.godot/imported/char_fairy2_Outline_2.png-a6a350df8b1595fedd8e820f54355532.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_2.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_2.png-a6a350df8b1595fedd8e820f54355532.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_3 #64716.png b/extracted/Sprite/char_fairy2_Outline_3 #64716.png new file mode 100644 index 0000000..2e9e1f6 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_3 #64716.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfaecb6357c7ac54de2c341e5f57cf10d52886b548edebe118faa8960402197 +size 5961 diff --git a/extracted/Sprite/char_fairy2_Outline_3 #64716.png.import b/extracted/Sprite/char_fairy2_Outline_3 #64716.png.import new file mode 100644 index 0000000..cf902f8 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_3 #64716.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1s86tioej6f2" +path="res://.godot/imported/char_fairy2_Outline_3 #64716.png-1f15d5c8538bc3ed32704e1542020e54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_3 #64716.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_3 #64716.png-1f15d5c8538bc3ed32704e1542020e54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_3.png b/extracted/Sprite/char_fairy2_Outline_3.png new file mode 100644 index 0000000..d61cf0b --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd77d35de1d53ede15e0aca06a620400d94ba2e433a9357eec818527034ad42 +size 8262 diff --git a/extracted/Sprite/char_fairy2_Outline_3.png.import b/extracted/Sprite/char_fairy2_Outline_3.png.import new file mode 100644 index 0000000..007e11a --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmeee6p2vbvxn" +path="res://.godot/imported/char_fairy2_Outline_3.png-f3dbde42c93431cb998042a3bff12ff1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_3.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_3.png-f3dbde42c93431cb998042a3bff12ff1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_4 #64459.png b/extracted/Sprite/char_fairy2_Outline_4 #64459.png new file mode 100644 index 0000000..53212f3 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_4 #64459.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7c0c09825dfaeed4939516bdb1b7043d28a5aabe6bb1224361f3bbe10a934c +size 11399 diff --git a/extracted/Sprite/char_fairy2_Outline_4 #64459.png.import b/extracted/Sprite/char_fairy2_Outline_4 #64459.png.import new file mode 100644 index 0000000..abeee79 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_4 #64459.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bls2mdmswlf7r" +path="res://.godot/imported/char_fairy2_Outline_4 #64459.png-c6380a8b98bd6db6775ff0ef9c1657e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_4 #64459.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_4 #64459.png-c6380a8b98bd6db6775ff0ef9c1657e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_4.png b/extracted/Sprite/char_fairy2_Outline_4.png new file mode 100644 index 0000000..3a65414 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5619c4f92a5fe6d48c43990c051124844d787a08bec955f56de991101f025392 +size 8266 diff --git a/extracted/Sprite/char_fairy2_Outline_4.png.import b/extracted/Sprite/char_fairy2_Outline_4.png.import new file mode 100644 index 0000000..02a44f3 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgsj0o5laret" +path="res://.godot/imported/char_fairy2_Outline_4.png-0da5738cc9728adc149c5d6f0af61584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_4.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_4.png-0da5738cc9728adc149c5d6f0af61584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_5 #64573.png b/extracted/Sprite/char_fairy2_Outline_5 #64573.png new file mode 100644 index 0000000..7e3a2f0 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_5 #64573.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db561f3aad793cd0d16bf329003453dbbb44950e6097018aee3b0dbbdcc727da +size 16172 diff --git a/extracted/Sprite/char_fairy2_Outline_5 #64573.png.import b/extracted/Sprite/char_fairy2_Outline_5 #64573.png.import new file mode 100644 index 0000000..ba0734d --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_5 #64573.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckpcwpewg4mnq" +path="res://.godot/imported/char_fairy2_Outline_5 #64573.png-246e3d8e9522890580421aa56b3f93d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_5 #64573.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_5 #64573.png-246e3d8e9522890580421aa56b3f93d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_5.png b/extracted/Sprite/char_fairy2_Outline_5.png new file mode 100644 index 0000000..9a4e746 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69bff5a8d2a7c191ee352761739caffb40711a4b7291e0c917f6393bb0bb89b +size 19034 diff --git a/extracted/Sprite/char_fairy2_Outline_5.png.import b/extracted/Sprite/char_fairy2_Outline_5.png.import new file mode 100644 index 0000000..c2d14f3 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnbbckxl5si7s" +path="res://.godot/imported/char_fairy2_Outline_5.png-d67138c7ee853ed49c007e71d31bf706.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_5.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_5.png-d67138c7ee853ed49c007e71d31bf706.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_6 #64633.png b/extracted/Sprite/char_fairy2_Outline_6 #64633.png new file mode 100644 index 0000000..96dc33b --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_6 #64633.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917efdbf5aeacadf1cdd496b4499bb49f52d1a79496ddad73c45117897420eda +size 23437 diff --git a/extracted/Sprite/char_fairy2_Outline_6 #64633.png.import b/extracted/Sprite/char_fairy2_Outline_6 #64633.png.import new file mode 100644 index 0000000..4c6a6d8 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_6 #64633.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3tyhj7ieo7b6" +path="res://.godot/imported/char_fairy2_Outline_6 #64633.png-25619ab89fb3d920622fad6eedf8339d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_6 #64633.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_6 #64633.png-25619ab89fb3d920622fad6eedf8339d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_6.png b/extracted/Sprite/char_fairy2_Outline_6.png new file mode 100644 index 0000000..afa5059 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3ff7be2e62c12e156394647642bf5af745feeb81df4e905ba0d4e68457a7d3 +size 32872 diff --git a/extracted/Sprite/char_fairy2_Outline_6.png.import b/extracted/Sprite/char_fairy2_Outline_6.png.import new file mode 100644 index 0000000..81fe4a6 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://exl1ychs5ju7" +path="res://.godot/imported/char_fairy2_Outline_6.png-9485c74be5c3d750b8e8ed3a9e43d86a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_6.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_6.png-9485c74be5c3d750b8e8ed3a9e43d86a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_7 #63740.png b/extracted/Sprite/char_fairy2_Outline_7 #63740.png new file mode 100644 index 0000000..62b0842 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_7 #63740.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1052c54a826e44289de46d42bc4dd6a2f5675f1b5db1292135f5073b94d4525 +size 11734 diff --git a/extracted/Sprite/char_fairy2_Outline_7 #63740.png.import b/extracted/Sprite/char_fairy2_Outline_7 #63740.png.import new file mode 100644 index 0000000..55386e6 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_7 #63740.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctl664utp4ur6" +path="res://.godot/imported/char_fairy2_Outline_7 #63740.png-8f25dfba409c6d9b5ff29caa213a9305.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_7 #63740.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_7 #63740.png-8f25dfba409c6d9b5ff29caa213a9305.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_7.png b/extracted/Sprite/char_fairy2_Outline_7.png new file mode 100644 index 0000000..f5e98a5 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decec1922ed726518a4772f5666c80be6e94b7f0fba806051367cb7a1df46779 +size 8786 diff --git a/extracted/Sprite/char_fairy2_Outline_7.png.import b/extracted/Sprite/char_fairy2_Outline_7.png.import new file mode 100644 index 0000000..bef4a3c --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlipvbipm5ssu" +path="res://.godot/imported/char_fairy2_Outline_7.png-6b8d4c9f89874dfaa3222f6493bfd196.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_7.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_7.png-6b8d4c9f89874dfaa3222f6493bfd196.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_8 #63630.png b/extracted/Sprite/char_fairy2_Outline_8 #63630.png new file mode 100644 index 0000000..b5a611c --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_8 #63630.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca6eb1406171093ae1369099763967e2b61b97b26565aa50dfecf864bc60e7d +size 13310 diff --git a/extracted/Sprite/char_fairy2_Outline_8 #63630.png.import b/extracted/Sprite/char_fairy2_Outline_8 #63630.png.import new file mode 100644 index 0000000..7c3a0f8 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_8 #63630.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5fqug60ltlmi" +path="res://.godot/imported/char_fairy2_Outline_8 #63630.png-967df59d22ddb74562cc041e5bb30298.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_8 #63630.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_8 #63630.png-967df59d22ddb74562cc041e5bb30298.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy2_Outline_8.png b/extracted/Sprite/char_fairy2_Outline_8.png new file mode 100644 index 0000000..5e6a048 --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afb666e4f9c21a833b76371c55950f6524dd904fb7bd1d71e9b9d7975c0c957 +size 11530 diff --git a/extracted/Sprite/char_fairy2_Outline_8.png.import b/extracted/Sprite/char_fairy2_Outline_8.png.import new file mode 100644 index 0000000..341c7ea --- /dev/null +++ b/extracted/Sprite/char_fairy2_Outline_8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bivu4rk6v6ddn" +path="res://.godot/imported/char_fairy2_Outline_8.png-582164debfb0f166ec224b8c618b1653.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy2_Outline_8.png" +dest_files=["res://.godot/imported/char_fairy2_Outline_8.png-582164debfb0f166ec224b8c618b1653.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_0 #64279.png b/extracted/Sprite/char_fairy_outline_0 #64279.png new file mode 100644 index 0000000..18c6b3e --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_0 #64279.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066934428d3a3f42311b79cbadabe8065031bb7e66d0ffdf949d8e74ec6ff534 +size 41064 diff --git a/extracted/Sprite/char_fairy_outline_0 #64279.png.import b/extracted/Sprite/char_fairy_outline_0 #64279.png.import new file mode 100644 index 0000000..7815114 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_0 #64279.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwsx6l0q5nmhv" +path="res://.godot/imported/char_fairy_outline_0 #64279.png-c194da0c5aee7fdac236181ed6a0ca2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_0 #64279.png" +dest_files=["res://.godot/imported/char_fairy_outline_0 #64279.png-c194da0c5aee7fdac236181ed6a0ca2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_0.png b/extracted/Sprite/char_fairy_outline_0.png new file mode 100644 index 0000000..73df27f --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec33b447e4f943db61db1e8f6e3ae83fce574b75338e2e1b751128610e0d9f8a +size 36683 diff --git a/extracted/Sprite/char_fairy_outline_0.png.import b/extracted/Sprite/char_fairy_outline_0.png.import new file mode 100644 index 0000000..a131114 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bepykvf2bs78u" +path="res://.godot/imported/char_fairy_outline_0.png-d4d554785a2df868aee5d9a5e8cc366f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_0.png" +dest_files=["res://.godot/imported/char_fairy_outline_0.png-d4d554785a2df868aee5d9a5e8cc366f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_1 #64558.png b/extracted/Sprite/char_fairy_outline_1 #64558.png new file mode 100644 index 0000000..9677405 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_1 #64558.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10699ddff48541fb4c3b8e4280a2ed7edf5e9633cc68b425cec522b0681b9ad +size 28094 diff --git a/extracted/Sprite/char_fairy_outline_1 #64558.png.import b/extracted/Sprite/char_fairy_outline_1 #64558.png.import new file mode 100644 index 0000000..b39d6b5 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_1 #64558.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqms70snu5wdu" +path="res://.godot/imported/char_fairy_outline_1 #64558.png-0db678b45da7ac5d5d6ac8df8d449fd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_1 #64558.png" +dest_files=["res://.godot/imported/char_fairy_outline_1 #64558.png-0db678b45da7ac5d5d6ac8df8d449fd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_1.png b/extracted/Sprite/char_fairy_outline_1.png new file mode 100644 index 0000000..51f2682 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394951a74e6762b5f472662de625523ac1de5a0925ee3eeaf5d9689c03b76984 +size 32143 diff --git a/extracted/Sprite/char_fairy_outline_1.png.import b/extracted/Sprite/char_fairy_outline_1.png.import new file mode 100644 index 0000000..c6f943f --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clqbmkbjd1kam" +path="res://.godot/imported/char_fairy_outline_1.png-619213924a58557661888f73cb591572.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_1.png" +dest_files=["res://.godot/imported/char_fairy_outline_1.png-619213924a58557661888f73cb591572.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_10 #63719.png b/extracted/Sprite/char_fairy_outline_10 #63719.png new file mode 100644 index 0000000..1782d33 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_10 #63719.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895aba45b501ee5b7e450a7ec9075b67874f1bccb838d035dd9254fe8a7a6e80 +size 6738 diff --git a/extracted/Sprite/char_fairy_outline_10 #63719.png.import b/extracted/Sprite/char_fairy_outline_10 #63719.png.import new file mode 100644 index 0000000..f5bada5 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_10 #63719.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2jixivindmu2" +path="res://.godot/imported/char_fairy_outline_10 #63719.png-2f9568b80bc24e5752dc57e82b8bea83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_10 #63719.png" +dest_files=["res://.godot/imported/char_fairy_outline_10 #63719.png-2f9568b80bc24e5752dc57e82b8bea83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_10.png b/extracted/Sprite/char_fairy_outline_10.png new file mode 100644 index 0000000..72809d5 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91b9a0be989c9460d53c19643119a83f3ac5420152e2626a7cff47cf90d2c78 +size 5372 diff --git a/extracted/Sprite/char_fairy_outline_10.png.import b/extracted/Sprite/char_fairy_outline_10.png.import new file mode 100644 index 0000000..64a86d9 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_10.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vom7ni8qjd6l" +path="res://.godot/imported/char_fairy_outline_10.png-e1805c3cd7b6a2e5d69c99882f4c8415.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_10.png" +dest_files=["res://.godot/imported/char_fairy_outline_10.png-e1805c3cd7b6a2e5d69c99882f4c8415.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_3.png b/extracted/Sprite/char_fairy_outline_3.png new file mode 100644 index 0000000..0d6215f --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e256da52a8b67f4e6d4511fbfbe60065c558ff1202ee6a3d7cc43921d5270abc +size 9200 diff --git a/extracted/Sprite/char_fairy_outline_3.png.import b/extracted/Sprite/char_fairy_outline_3.png.import new file mode 100644 index 0000000..e9d405c --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfdmmxadw6sur" +path="res://.godot/imported/char_fairy_outline_3.png-865b1d2af6dcdecc68d729e489c4e51a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_3.png" +dest_files=["res://.godot/imported/char_fairy_outline_3.png-865b1d2af6dcdecc68d729e489c4e51a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_4 #64341.png b/extracted/Sprite/char_fairy_outline_4 #64341.png new file mode 100644 index 0000000..bebf8da --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_4 #64341.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7749eb4be93f290f116f06d054709296351d91062aa8a89e5357ba6b442a6916 +size 18392 diff --git a/extracted/Sprite/char_fairy_outline_4 #64341.png.import b/extracted/Sprite/char_fairy_outline_4 #64341.png.import new file mode 100644 index 0000000..a4294ac --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_4 #64341.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbg7rwc6fha8w" +path="res://.godot/imported/char_fairy_outline_4 #64341.png-64209f4b3d983489f69ac792867dd606.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_4 #64341.png" +dest_files=["res://.godot/imported/char_fairy_outline_4 #64341.png-64209f4b3d983489f69ac792867dd606.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_4.png b/extracted/Sprite/char_fairy_outline_4.png new file mode 100644 index 0000000..b2c1034 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91500853c67bb7fb06eeccf70ff0c54c0188079c5cd5e12c8cf336a320360693 +size 19347 diff --git a/extracted/Sprite/char_fairy_outline_4.png.import b/extracted/Sprite/char_fairy_outline_4.png.import new file mode 100644 index 0000000..ce22f7f --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyslsjmn4s6pw" +path="res://.godot/imported/char_fairy_outline_4.png-38c23565fc29b4b38b3b8dbb56962f1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_4.png" +dest_files=["res://.godot/imported/char_fairy_outline_4.png-38c23565fc29b4b38b3b8dbb56962f1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_5.png b/extracted/Sprite/char_fairy_outline_5.png new file mode 100644 index 0000000..098d8f9 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c02228082ff8eb977ca0fbec67001621bad494f804370adc892602fafbef73 +size 15116 diff --git a/extracted/Sprite/char_fairy_outline_5.png.import b/extracted/Sprite/char_fairy_outline_5.png.import new file mode 100644 index 0000000..c2574a4 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqt07r2jwbycx" +path="res://.godot/imported/char_fairy_outline_5.png-621df3e67664a46df16ece2400aef256.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_5.png" +dest_files=["res://.godot/imported/char_fairy_outline_5.png-621df3e67664a46df16ece2400aef256.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_6 #63735.png b/extracted/Sprite/char_fairy_outline_6 #63735.png new file mode 100644 index 0000000..6fd0fee --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_6 #63735.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c529f23b3bc7aea5385a805473d861e6bb79a8cad7c05ec30d6c422d537adc +size 14983 diff --git a/extracted/Sprite/char_fairy_outline_6 #63735.png.import b/extracted/Sprite/char_fairy_outline_6 #63735.png.import new file mode 100644 index 0000000..6c40db1 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_6 #63735.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dra6hf62weerl" +path="res://.godot/imported/char_fairy_outline_6 #63735.png-3857891816a429a2a54ba2f8b8c5e6ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_6 #63735.png" +dest_files=["res://.godot/imported/char_fairy_outline_6 #63735.png-3857891816a429a2a54ba2f8b8c5e6ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_6.png b/extracted/Sprite/char_fairy_outline_6.png new file mode 100644 index 0000000..70e2a8a --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991c03f5003aca33de85a8ed80d641de4a4d465ff4a3b5ea6c844e8d120b5d97 +size 12693 diff --git a/extracted/Sprite/char_fairy_outline_6.png.import b/extracted/Sprite/char_fairy_outline_6.png.import new file mode 100644 index 0000000..2c243cc --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd4ohd83ndtax" +path="res://.godot/imported/char_fairy_outline_6.png-dba2b4cf1e22f3ee5610839e12db107c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_6.png" +dest_files=["res://.godot/imported/char_fairy_outline_6.png-dba2b4cf1e22f3ee5610839e12db107c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_7 #63736.png b/extracted/Sprite/char_fairy_outline_7 #63736.png new file mode 100644 index 0000000..c39829e --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_7 #63736.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17766149068d06291c37cf6086a3e6eed7f4e08a06423f3d93636f3e9bc1d6f6 +size 17616 diff --git a/extracted/Sprite/char_fairy_outline_7 #63736.png.import b/extracted/Sprite/char_fairy_outline_7 #63736.png.import new file mode 100644 index 0000000..d40c02e --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_7 #63736.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkwjay0gho7p8" +path="res://.godot/imported/char_fairy_outline_7 #63736.png-439c30e60ef58296d8a32c0258a5cebe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_7 #63736.png" +dest_files=["res://.godot/imported/char_fairy_outline_7 #63736.png-439c30e60ef58296d8a32c0258a5cebe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_7.png b/extracted/Sprite/char_fairy_outline_7.png new file mode 100644 index 0000000..86007f8 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c2d3a4b19dc585aebb93b621eb664254112fe251258b8c54b7244b5d91b63e +size 15314 diff --git a/extracted/Sprite/char_fairy_outline_7.png.import b/extracted/Sprite/char_fairy_outline_7.png.import new file mode 100644 index 0000000..b98155e --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcs1tsq1vqyy8" +path="res://.godot/imported/char_fairy_outline_7.png-fb010a5656f7fbaf48f20ff5eed570fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_7.png" +dest_files=["res://.godot/imported/char_fairy_outline_7.png-fb010a5656f7fbaf48f20ff5eed570fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_8 #64451.png b/extracted/Sprite/char_fairy_outline_8 #64451.png new file mode 100644 index 0000000..16f4c10 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_8 #64451.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18a43e7227ad029de2f3d76c9bd55846115a1b01a00f60e8b3c20c95ed45720 +size 4564 diff --git a/extracted/Sprite/char_fairy_outline_8 #64451.png.import b/extracted/Sprite/char_fairy_outline_8 #64451.png.import new file mode 100644 index 0000000..360d16d --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_8 #64451.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0rwr54hyhvgn" +path="res://.godot/imported/char_fairy_outline_8 #64451.png-d5c359156c9d3a3247138aa973aaae5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_8 #64451.png" +dest_files=["res://.godot/imported/char_fairy_outline_8 #64451.png-d5c359156c9d3a3247138aa973aaae5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_8.png b/extracted/Sprite/char_fairy_outline_8.png new file mode 100644 index 0000000..714bbfd --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38521fd212f7c5eddef1c5637a3cbf2595b5fef3e8e1d4650aa1ed55e8f40cd +size 3344 diff --git a/extracted/Sprite/char_fairy_outline_8.png.import b/extracted/Sprite/char_fairy_outline_8.png.import new file mode 100644 index 0000000..6ee2142 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_8.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch7ya2gign662" +path="res://.godot/imported/char_fairy_outline_8.png-6d1a47bf6863f668cd58a888b3b25d47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_8.png" +dest_files=["res://.godot/imported/char_fairy_outline_8.png-6d1a47bf6863f668cd58a888b3b25d47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_9 #64561.png b/extracted/Sprite/char_fairy_outline_9 #64561.png new file mode 100644 index 0000000..135c4ee --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_9 #64561.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548d52e7f0dbb4215dcb8e74cf041123d8c324a7b82469b5b9c908003667b2bf +size 3722 diff --git a/extracted/Sprite/char_fairy_outline_9 #64561.png.import b/extracted/Sprite/char_fairy_outline_9 #64561.png.import new file mode 100644 index 0000000..7558851 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_9 #64561.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4bvdimejburd" +path="res://.godot/imported/char_fairy_outline_9 #64561.png-9b8924a48b98e7f1ecb015c5fe6fbbf1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_9 #64561.png" +dest_files=["res://.godot/imported/char_fairy_outline_9 #64561.png-9b8924a48b98e7f1ecb015c5fe6fbbf1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fairy_outline_9.png b/extracted/Sprite/char_fairy_outline_9.png new file mode 100644 index 0000000..d0d91c4 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f436377690ecd817fc37ff93b98a3945fb75ee23fe1dc8d7cc4a9eded37c449 +size 4900 diff --git a/extracted/Sprite/char_fairy_outline_9.png.import b/extracted/Sprite/char_fairy_outline_9.png.import new file mode 100644 index 0000000..96cabe3 --- /dev/null +++ b/extracted/Sprite/char_fairy_outline_9.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cod1e06ia8fn5" +path="res://.godot/imported/char_fairy_outline_9.png-cd7a5a511f420022d7165542b4e8ed93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fairy_outline_9.png" +dest_files=["res://.godot/imported/char_fairy_outline_9.png-cd7a5a511f420022d7165542b4e8ed93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_0 #64464.png b/extracted/Sprite/char_fisherman_outline_0 #64464.png new file mode 100644 index 0000000..b331667 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_0 #64464.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4d9732e046cf952b8629d33181dfeb9930f1c23c0dc8ada3818ab12156fe99 +size 128941 diff --git a/extracted/Sprite/char_fisherman_outline_0 #64464.png.import b/extracted/Sprite/char_fisherman_outline_0 #64464.png.import new file mode 100644 index 0000000..a84fe95 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_0 #64464.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0rcphralcpcc" +path="res://.godot/imported/char_fisherman_outline_0 #64464.png-84b6f344c1896afbae2b01c69fa3db55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_0 #64464.png" +dest_files=["res://.godot/imported/char_fisherman_outline_0 #64464.png-84b6f344c1896afbae2b01c69fa3db55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_0.png b/extracted/Sprite/char_fisherman_outline_0.png new file mode 100644 index 0000000..0925108 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fc22ce443b84b8984317d02b87ba414b8e4a2175bbc6bddf955bce2082e697 +size 81390 diff --git a/extracted/Sprite/char_fisherman_outline_0.png.import b/extracted/Sprite/char_fisherman_outline_0.png.import new file mode 100644 index 0000000..01c344d --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crsj4d10vdfac" +path="res://.godot/imported/char_fisherman_outline_0.png-8d93610b179f3b820fd4696fdebb079c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_0.png" +dest_files=["res://.godot/imported/char_fisherman_outline_0.png-8d93610b179f3b820fd4696fdebb079c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_1 #63784.png b/extracted/Sprite/char_fisherman_outline_1 #63784.png new file mode 100644 index 0000000..df3700d --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_1 #63784.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449787566537e78aeb1a9d52a5e83a406975a58ea4e803b973cc3f441b8cb0b3 +size 46487 diff --git a/extracted/Sprite/char_fisherman_outline_1 #63784.png.import b/extracted/Sprite/char_fisherman_outline_1 #63784.png.import new file mode 100644 index 0000000..23758a8 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_1 #63784.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chhtpmnjurbm1" +path="res://.godot/imported/char_fisherman_outline_1 #63784.png-ae879a684ab53ce55e1eccafbc264d63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_1 #63784.png" +dest_files=["res://.godot/imported/char_fisherman_outline_1 #63784.png-ae879a684ab53ce55e1eccafbc264d63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_1.png b/extracted/Sprite/char_fisherman_outline_1.png new file mode 100644 index 0000000..c2f39bd --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39dc5fbf9a235093c511e61493b2bdf38826c3bd0e01ca4caae49075035abb8b +size 26094 diff --git a/extracted/Sprite/char_fisherman_outline_1.png.import b/extracted/Sprite/char_fisherman_outline_1.png.import new file mode 100644 index 0000000..4f3d5c8 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m068v7lvjuy7" +path="res://.godot/imported/char_fisherman_outline_1.png-4184be918bc201fdfaefe50add978b5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_1.png" +dest_files=["res://.godot/imported/char_fisherman_outline_1.png-4184be918bc201fdfaefe50add978b5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_2 #64652.png b/extracted/Sprite/char_fisherman_outline_2 #64652.png new file mode 100644 index 0000000..474de96 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_2 #64652.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e2f489796175758783a466fe6cffd0f5a34997bd0e7f794fe5a1c381c0f97 +size 62787 diff --git a/extracted/Sprite/char_fisherman_outline_2 #64652.png.import b/extracted/Sprite/char_fisherman_outline_2 #64652.png.import new file mode 100644 index 0000000..ddb0735 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_2 #64652.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwrp7oxjmsuuj" +path="res://.godot/imported/char_fisherman_outline_2 #64652.png-cff6f1896f968044359632da50564aeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_2 #64652.png" +dest_files=["res://.godot/imported/char_fisherman_outline_2 #64652.png-cff6f1896f968044359632da50564aeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_2.png b/extracted/Sprite/char_fisherman_outline_2.png new file mode 100644 index 0000000..bb2a5bb --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c82e0d546611764648398e0437b72fedf78bdee0060dda5276c0f88778ceba5 +size 112905 diff --git a/extracted/Sprite/char_fisherman_outline_2.png.import b/extracted/Sprite/char_fisherman_outline_2.png.import new file mode 100644 index 0000000..70dc66f --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5llnwg36h3c0" +path="res://.godot/imported/char_fisherman_outline_2.png-01d3391f433b10470b10f4dc53b6db04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_2.png" +dest_files=["res://.godot/imported/char_fisherman_outline_2.png-01d3391f433b10470b10f4dc53b6db04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_3 #64658.png b/extracted/Sprite/char_fisherman_outline_3 #64658.png new file mode 100644 index 0000000..964a1c7 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_3 #64658.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d933d019607c4ab0147b72771f38c70edd6427188fa8721ea8b3c67dc217bb60 +size 27907 diff --git a/extracted/Sprite/char_fisherman_outline_3 #64658.png.import b/extracted/Sprite/char_fisherman_outline_3 #64658.png.import new file mode 100644 index 0000000..beefee9 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_3 #64658.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6eppmsiudq8m" +path="res://.godot/imported/char_fisherman_outline_3 #64658.png-5316aeb4b5609a88534d59304de02c21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_3 #64658.png" +dest_files=["res://.godot/imported/char_fisherman_outline_3 #64658.png-5316aeb4b5609a88534d59304de02c21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_3.png b/extracted/Sprite/char_fisherman_outline_3.png new file mode 100644 index 0000000..43d1304 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5254c3b12039ff656fe491c45e1f3066e0037ab58cdd2f30f0d1efe9046feb88 +size 48252 diff --git a/extracted/Sprite/char_fisherman_outline_3.png.import b/extracted/Sprite/char_fisherman_outline_3.png.import new file mode 100644 index 0000000..c132ce4 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqxdqvievrdj6" +path="res://.godot/imported/char_fisherman_outline_3.png-4fea6074bc528b820b0b80841a88ab35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_3.png" +dest_files=["res://.godot/imported/char_fisherman_outline_3.png-4fea6074bc528b820b0b80841a88ab35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_4 #64359.png b/extracted/Sprite/char_fisherman_outline_4 #64359.png new file mode 100644 index 0000000..02cfb50 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_4 #64359.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa7f176b20acb6996f0d7359015fa45deae39b8b979eb0c0bbba99658403692 +size 14478 diff --git a/extracted/Sprite/char_fisherman_outline_4 #64359.png.import b/extracted/Sprite/char_fisherman_outline_4 #64359.png.import new file mode 100644 index 0000000..8d1fc6c --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_4 #64359.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhnipajjgy1e6" +path="res://.godot/imported/char_fisherman_outline_4 #64359.png-016a083fcd665b4ea1f414cc849dd57f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_4 #64359.png" +dest_files=["res://.godot/imported/char_fisherman_outline_4 #64359.png-016a083fcd665b4ea1f414cc849dd57f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_4.png b/extracted/Sprite/char_fisherman_outline_4.png new file mode 100644 index 0000000..ac845f6 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18164e9afa6a851f389cd3015219397456eb838a88097bd27d5d7454c706253 +size 3542 diff --git a/extracted/Sprite/char_fisherman_outline_4.png.import b/extracted/Sprite/char_fisherman_outline_4.png.import new file mode 100644 index 0000000..6122b9e --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvy4e41235exb" +path="res://.godot/imported/char_fisherman_outline_4.png-941326b37d33b55ac8eced0c84b828e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_4.png" +dest_files=["res://.godot/imported/char_fisherman_outline_4.png-941326b37d33b55ac8eced0c84b828e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_5 #64564.png b/extracted/Sprite/char_fisherman_outline_5 #64564.png new file mode 100644 index 0000000..e2051c8 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_5 #64564.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3bf69e53c6d340f1679be659e6da0bff5e5ffbdff65ef91418df37b2dcb738 +size 4181 diff --git a/extracted/Sprite/char_fisherman_outline_5 #64564.png.import b/extracted/Sprite/char_fisherman_outline_5 #64564.png.import new file mode 100644 index 0000000..78b62eb --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_5 #64564.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0nqiurlf82af" +path="res://.godot/imported/char_fisherman_outline_5 #64564.png-d98ba1352ba233d237667ab5c4a906c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_5 #64564.png" +dest_files=["res://.godot/imported/char_fisherman_outline_5 #64564.png-d98ba1352ba233d237667ab5c4a906c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_5.png b/extracted/Sprite/char_fisherman_outline_5.png new file mode 100644 index 0000000..f4451de --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62706076bfa71c9120e457dbd120f07a7544506590d433b1f761ac191cbc065 +size 16377 diff --git a/extracted/Sprite/char_fisherman_outline_5.png.import b/extracted/Sprite/char_fisherman_outline_5.png.import new file mode 100644 index 0000000..055a5f1 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmedcr512iw21" +path="res://.godot/imported/char_fisherman_outline_5.png-91cbcc50d7332cdf818e5bdaa34103c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_5.png" +dest_files=["res://.godot/imported/char_fisherman_outline_5.png-91cbcc50d7332cdf818e5bdaa34103c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_6 #64553.png b/extracted/Sprite/char_fisherman_outline_6 #64553.png new file mode 100644 index 0000000..82a005d --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_6 #64553.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3750cee306f91a804712636db9a0ac37a82ffcc0cd99a5db6ee9707a20f4ea1 +size 7913 diff --git a/extracted/Sprite/char_fisherman_outline_6 #64553.png.import b/extracted/Sprite/char_fisherman_outline_6 #64553.png.import new file mode 100644 index 0000000..ff8e0d2 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_6 #64553.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1vu3mv3ryj6k" +path="res://.godot/imported/char_fisherman_outline_6 #64553.png-9c3fee0d9e1bac15b7ececd8073ed474.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_6 #64553.png" +dest_files=["res://.godot/imported/char_fisherman_outline_6 #64553.png-9c3fee0d9e1bac15b7ececd8073ed474.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_fisherman_outline_6.png b/extracted/Sprite/char_fisherman_outline_6.png new file mode 100644 index 0000000..a0f3531 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a9a86c5f28888626439c7aaf36f51cc8642fd498962dc7c2dc1ef3bc9dac5c +size 25440 diff --git a/extracted/Sprite/char_fisherman_outline_6.png.import b/extracted/Sprite/char_fisherman_outline_6.png.import new file mode 100644 index 0000000..e1f8b25 --- /dev/null +++ b/extracted/Sprite/char_fisherman_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blql27myjbeij" +path="res://.godot/imported/char_fisherman_outline_6.png-d1e20ad2634be77d3be849d402e8c175.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_fisherman_outline_6.png" +dest_files=["res://.godot/imported/char_fisherman_outline_6.png-d1e20ad2634be77d3be849d402e8c175.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_0 #64408.png b/extracted/Sprite/char_leñador_outline_0 #64408.png new file mode 100644 index 0000000..eada2db --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_0 #64408.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0639518df8b8258e55deae665312aeeac3894556fda620ac64793dec7b54bf8c +size 47567 diff --git a/extracted/Sprite/char_leñador_outline_0 #64408.png.import b/extracted/Sprite/char_leñador_outline_0 #64408.png.import new file mode 100644 index 0000000..ddf40b6 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_0 #64408.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b730u188se8kk" +path="res://.godot/imported/char_leñador_outline_0 #64408.png-e7b67dc73e8ee68e9187ee52a238f7e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_0 #64408.png" +dest_files=["res://.godot/imported/char_leñador_outline_0 #64408.png-e7b67dc73e8ee68e9187ee52a238f7e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_0.png b/extracted/Sprite/char_leñador_outline_0.png new file mode 100644 index 0000000..f4c560f --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b170c9a29b46daab8b93eff0fed963d9b2b8fcfed7ddacecfdafd584e906bb6 +size 41847 diff --git a/extracted/Sprite/char_leñador_outline_0.png.import b/extracted/Sprite/char_leñador_outline_0.png.import new file mode 100644 index 0000000..8e7af56 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djyr5l5c0ij75" +path="res://.godot/imported/char_leñador_outline_0.png-d8b1598cb4a5d4f15481aae563b0d29d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_0.png" +dest_files=["res://.godot/imported/char_leñador_outline_0.png-d8b1598cb4a5d4f15481aae563b0d29d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_1 #64397.png b/extracted/Sprite/char_leñador_outline_1 #64397.png new file mode 100644 index 0000000..ec40659 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_1 #64397.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab45766fc7450566e7e1b832e36687468821fe45fe25df1da32ed001b08aa1e +size 28929 diff --git a/extracted/Sprite/char_leñador_outline_1 #64397.png.import b/extracted/Sprite/char_leñador_outline_1 #64397.png.import new file mode 100644 index 0000000..c13e6d0 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_1 #64397.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b48darwvqr28q" +path="res://.godot/imported/char_leñador_outline_1 #64397.png-132a4d1f3ff588a5ed48fe0aa4dc7276.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_1 #64397.png" +dest_files=["res://.godot/imported/char_leñador_outline_1 #64397.png-132a4d1f3ff588a5ed48fe0aa4dc7276.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_1.png b/extracted/Sprite/char_leñador_outline_1.png new file mode 100644 index 0000000..18b1d54 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90ec0fd24b26440fa957382c583b03cad72e323a4e1be063c29869f2ba527d8 +size 25152 diff --git a/extracted/Sprite/char_leñador_outline_1.png.import b/extracted/Sprite/char_leñador_outline_1.png.import new file mode 100644 index 0000000..b90a045 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l1fpa203yke0" +path="res://.godot/imported/char_leñador_outline_1.png-1b87619eb108dac127f1e15deef463c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_1.png" +dest_files=["res://.godot/imported/char_leñador_outline_1.png-1b87619eb108dac127f1e15deef463c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_2 #63789.png b/extracted/Sprite/char_leñador_outline_2 #63789.png new file mode 100644 index 0000000..6aa3082 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_2 #63789.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d2c0eb4178ec07aa40491befbbaaae0f2ac5670763936e19cc7c1a1701df97 +size 38591 diff --git a/extracted/Sprite/char_leñador_outline_2 #63789.png.import b/extracted/Sprite/char_leñador_outline_2 #63789.png.import new file mode 100644 index 0000000..5a1f60b --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_2 #63789.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2cilluydykiu" +path="res://.godot/imported/char_leñador_outline_2 #63789.png-c8a94aeb93815fa6688211ab3a7c7233.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_2 #63789.png" +dest_files=["res://.godot/imported/char_leñador_outline_2 #63789.png-c8a94aeb93815fa6688211ab3a7c7233.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_2.png b/extracted/Sprite/char_leñador_outline_2.png new file mode 100644 index 0000000..9be05b4 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65aad695ba96d634817f0aca65e1d15593eb488ad14f524a8c8e688991651587 +size 32427 diff --git a/extracted/Sprite/char_leñador_outline_2.png.import b/extracted/Sprite/char_leñador_outline_2.png.import new file mode 100644 index 0000000..4a2bb01 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r27wikqf2t47" +path="res://.godot/imported/char_leñador_outline_2.png-fdc2f02db7bf54eceaa2552f7635f837.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_2.png" +dest_files=["res://.godot/imported/char_leñador_outline_2.png-fdc2f02db7bf54eceaa2552f7635f837.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_3 #64651.png b/extracted/Sprite/char_leñador_outline_3 #64651.png new file mode 100644 index 0000000..7a44566 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_3 #64651.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0f9fec821fe059ef411622bb115b90b8264754fea90c92f0d5e9eec63ed439 +size 20264 diff --git a/extracted/Sprite/char_leñador_outline_3 #64651.png.import b/extracted/Sprite/char_leñador_outline_3 #64651.png.import new file mode 100644 index 0000000..dc48d44 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_3 #64651.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8u4r1cuectai" +path="res://.godot/imported/char_leñador_outline_3 #64651.png-f9d55c34865497205ebbbbadb6b0f3da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_3 #64651.png" +dest_files=["res://.godot/imported/char_leñador_outline_3 #64651.png-f9d55c34865497205ebbbbadb6b0f3da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_3.png b/extracted/Sprite/char_leñador_outline_3.png new file mode 100644 index 0000000..f7d53c9 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1748d5d6d699258846e70f6123c597a675df5a7a6b941f9140b860b2c1e56f0f +size 24173 diff --git a/extracted/Sprite/char_leñador_outline_3.png.import b/extracted/Sprite/char_leñador_outline_3.png.import new file mode 100644 index 0000000..994c0f6 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3it6dqn67kx3" +path="res://.godot/imported/char_leñador_outline_3.png-311b7b931582aee4dd247e53d82dc92b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_3.png" +dest_files=["res://.godot/imported/char_leñador_outline_3.png-311b7b931582aee4dd247e53d82dc92b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_4 #64722.png b/extracted/Sprite/char_leñador_outline_4 #64722.png new file mode 100644 index 0000000..c07e35e --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_4 #64722.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96533b814f9e6628d9fa1112b3370ec26ee2f85f07b6db6d9b397bd92578c47e +size 4203 diff --git a/extracted/Sprite/char_leñador_outline_4 #64722.png.import b/extracted/Sprite/char_leñador_outline_4 #64722.png.import new file mode 100644 index 0000000..61b4bad --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_4 #64722.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn3rd06ney30i" +path="res://.godot/imported/char_leñador_outline_4 #64722.png-7716134845b5cca616003f89f9d4812a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_4 #64722.png" +dest_files=["res://.godot/imported/char_leñador_outline_4 #64722.png-7716134845b5cca616003f89f9d4812a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_4.png b/extracted/Sprite/char_leñador_outline_4.png new file mode 100644 index 0000000..cf8c4aa --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3874ae064c9c6d5a3cae82206f8a684fe719aa53a83837ea2c0cfd78eab8c182 +size 7586 diff --git a/extracted/Sprite/char_leñador_outline_4.png.import b/extracted/Sprite/char_leñador_outline_4.png.import new file mode 100644 index 0000000..2e19c95 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxadvssqsdsrh" +path="res://.godot/imported/char_leñador_outline_4.png-a1db52b604fc84402d13e42f622e04fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_4.png" +dest_files=["res://.godot/imported/char_leñador_outline_4.png-a1db52b604fc84402d13e42f622e04fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_5 #63589.png b/extracted/Sprite/char_leñador_outline_5 #63589.png new file mode 100644 index 0000000..1d08435 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_5 #63589.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74632b4956502a1bee5b9cbeb02bd2c5b534f9dfe8057dac97720ef090430052 +size 5952 diff --git a/extracted/Sprite/char_leñador_outline_5 #63589.png.import b/extracted/Sprite/char_leñador_outline_5 #63589.png.import new file mode 100644 index 0000000..a7c1667 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_5 #63589.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b48u8mycjb36x" +path="res://.godot/imported/char_leñador_outline_5 #63589.png-4f9410bf53f92f82d520efb10260cc3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_5 #63589.png" +dest_files=["res://.godot/imported/char_leñador_outline_5 #63589.png-4f9410bf53f92f82d520efb10260cc3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_5.png b/extracted/Sprite/char_leñador_outline_5.png new file mode 100644 index 0000000..b30fb46 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2a6548429bc8eae0333ff993c04076d854f8bd1dd063ae396e6ee5c161a8bb +size 4004 diff --git a/extracted/Sprite/char_leñador_outline_5.png.import b/extracted/Sprite/char_leñador_outline_5.png.import new file mode 100644 index 0000000..8e4a59c --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2mh8ubf2fdro" +path="res://.godot/imported/char_leñador_outline_5.png-41b35de2a622e20773381870a11e77df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_5.png" +dest_files=["res://.godot/imported/char_leñador_outline_5.png-41b35de2a622e20773381870a11e77df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_6 #64438.png b/extracted/Sprite/char_leñador_outline_6 #64438.png new file mode 100644 index 0000000..6b323ce --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_6 #64438.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6940d47fd5452a081f9d1cff99e415e0205d1e47b9533cc417be4ece000b7d17 +size 4229 diff --git a/extracted/Sprite/char_leñador_outline_6 #64438.png.import b/extracted/Sprite/char_leñador_outline_6 #64438.png.import new file mode 100644 index 0000000..68c4f7e --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_6 #64438.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oevfm3mlb1vy" +path="res://.godot/imported/char_leñador_outline_6 #64438.png-1275c583c398f36145a18aca233e13ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_6 #64438.png" +dest_files=["res://.godot/imported/char_leñador_outline_6 #64438.png-1275c583c398f36145a18aca233e13ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_leñador_outline_6.png b/extracted/Sprite/char_leñador_outline_6.png new file mode 100644 index 0000000..a86e00b --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827a7bf7e3c924f82229d6ed128d4438c336fde7941f8bb2dcd8d4e83c921649 +size 2570 diff --git a/extracted/Sprite/char_leñador_outline_6.png.import b/extracted/Sprite/char_leñador_outline_6.png.import new file mode 100644 index 0000000..bfc9109 --- /dev/null +++ b/extracted/Sprite/char_leñador_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6fbryi8l362h" +path="res://.godot/imported/char_leñador_outline_6.png-f9f3558e523c1f997864a577cbdc327b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_leñador_outline_6.png" +dest_files=["res://.godot/imported/char_leñador_outline_6.png-f9f3558e523c1f997864a577cbdc327b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png b/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png new file mode 100644 index 0000000..4350b09 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4841bc82997390f5a2606c4af0c52d06bdc7a8f34a9649bf600526bce219b5f +size 11181 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png.import new file mode 100644 index 0000000..2dbe889 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w8rav7dw82j4" +path="res://.godot/imported/char_minifairy_Yellow_Outline_0 #63415.png-3f82c7cfa2e81480c997eef6fc008710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_0 #63415.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_0 #63415.png-3f82c7cfa2e81480c997eef6fc008710.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_0.png b/extracted/Sprite/char_minifairy_Yellow_Outline_0.png new file mode 100644 index 0000000..893f9b3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c552443413a7082397b71acd8e95aeba65a6e8c9e83f3199aae76d9d09c4b05b +size 9859 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_0.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_0.png.import new file mode 100644 index 0000000..70a10f0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bimp7dvr5bpc8" +path="res://.godot/imported/char_minifairy_Yellow_Outline_0.png-1a0d932e2d957a8da4dd7c5f160b674f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_0.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_0.png-1a0d932e2d957a8da4dd7c5f160b674f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png new file mode 100644 index 0000000..27e2bb0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787e79c2c4e0acb75b3a2d0d0b930b632673cdf4b37cb7b2551a7d5e462631a9 +size 2256 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png.import new file mode 100644 index 0000000..1e39c07 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpkvlau740rf5" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63487.png-0e826af0bf7039f02999b81d4fc9c116.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63487.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63487.png-0e826af0bf7039f02999b81d4fc9c116.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png new file mode 100644 index 0000000..be9d94c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c580f19d68ba6a3f45a4c3c700f87e8924bee8b9089b20335b4e88c6bcb83d8d +size 2211 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png.import new file mode 100644 index 0000000..e8fcf03 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmge6yhoq3dy8" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63488.png-edcbc64f9012cd4e436e6a2d647b11a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63488.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63488.png-edcbc64f9012cd4e436e6a2d647b11a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png new file mode 100644 index 0000000..7351a5a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604a6af7654aa6d29d05f721014a5d37f918aa91dc92c3a47bd98f1d91dbcf9c +size 4357 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png.import new file mode 100644 index 0000000..bb78b72 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u5s1yq1md764" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63489.png-048fbd294d2a6e3a2ba846bf8e517f33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63489.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63489.png-048fbd294d2a6e3a2ba846bf8e517f33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png new file mode 100644 index 0000000..34e94d7 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdf64fa3de28341426bd81fd21513a9a9a96b7d1e13e7b0f0f9eef9cab628f5 +size 2850 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png.import new file mode 100644 index 0000000..ae8c5ab --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6hti3f20t5d7" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63490.png-8f45d937e52548631ca52651379388dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63490.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63490.png-8f45d937e52548631ca52651379388dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png new file mode 100644 index 0000000..4559beb --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2beba7875b542fd19a1179ff0df4830d120e27b1303ae0398938ee84ed68a8 +size 4238 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png.import new file mode 100644 index 0000000..443486a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://igx8kj457yj0" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63491.png-e4f9694c27796f2aa68498d33a8b225f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63491.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63491.png-e4f9694c27796f2aa68498d33a8b225f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png new file mode 100644 index 0000000..d5a1094 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5927195b851d736e3a3e99226d9059295db0571e95b1026a132897198a0ded1a +size 2371 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png.import new file mode 100644 index 0000000..4e1f40d --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlhlx00n7af61" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63492.png-29fd0fb0c748486787031d3b581d262f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63492.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63492.png-29fd0fb0c748486787031d3b581d262f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png new file mode 100644 index 0000000..a856de1 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046f3281859121d5cac60e7eaf8041f18d46b7842369f352c7552c5ca5334562 +size 4275 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png.import new file mode 100644 index 0000000..cdd3255 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n4lapi0dafdr" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63493.png-772188bff683ac59ce5d14b564cdda13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63493.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63493.png-772188bff683ac59ce5d14b564cdda13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png new file mode 100644 index 0000000..0cd9a95 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de22610f98fea1d31d139ba595594c49480a00042ffb2355e8e2759b53dbb67 +size 4284 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png.import new file mode 100644 index 0000000..2866a69 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqe4oqyjxiwy6" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63494.png-2b87a5c21e01c97c21b7441755093bd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63494.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63494.png-2b87a5c21e01c97c21b7441755093bd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png new file mode 100644 index 0000000..b2e3013 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ff73dea7de47a326143d703c616ca4a23383f59c1bdcec3c863ca4bde1ee66 +size 4189 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png.import new file mode 100644 index 0000000..74eaa27 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsfgen7fy646w" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63495.png-cde3c1b274dced7829669bc6852b11a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63495.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63495.png-cde3c1b274dced7829669bc6852b11a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png new file mode 100644 index 0000000..fe0c5a4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812cd935b4ae537a9371eb05a5169fb30157174fc80ab055b2f19f0e4ea4244b +size 2208 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png.import new file mode 100644 index 0000000..f8cdac6 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d30pjsc3vdn7l" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63496.png-290854d5e9dae3c9ec70ff5cea593dec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63496.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63496.png-290854d5e9dae3c9ec70ff5cea593dec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png new file mode 100644 index 0000000..3c7ac5c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52614f9c80739081f697a1878bbc4e51e9c8b8488810340373e3a8a1ff3e7092 +size 2967 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png.import new file mode 100644 index 0000000..774f6cb --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clq4thvn8gxo0" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63497.png-970ee186f45e747ef0e611a6b2d84c09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63497.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63497.png-970ee186f45e747ef0e611a6b2d84c09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png new file mode 100644 index 0000000..2c03fa2 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c180d5d4036fee4ec0e2b747895be819e9cfd9b08e1c82b4ba664ff54658748b +size 4718 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png.import new file mode 100644 index 0000000..6fac5e9 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0rcpwu5drxy" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63498.png-746fc9971fc982f22f1468078da62c18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63498.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63498.png-746fc9971fc982f22f1468078da62c18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png new file mode 100644 index 0000000..d6c40db --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6942c2810a78cae9f66a1af5570150425eea9025463474fb9dcfe13866206653 +size 4262 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png.import new file mode 100644 index 0000000..43b6cc0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d037fhs8nhiju" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63499.png-21c021dc8fb0ef81f96796f3bf748197.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63499.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63499.png-21c021dc8fb0ef81f96796f3bf748197.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png new file mode 100644 index 0000000..3ff0f64 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121e204b542d8388f440477a502c08ac22b06f1e0104ab46050017414d9b8101 +size 2215 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png.import new file mode 100644 index 0000000..2fc8f53 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvml0gq7ovkcd" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63500.png-18f9c289baa8e45871d3263c7d5552fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63500.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63500.png-18f9c289baa8e45871d3263c7d5552fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png new file mode 100644 index 0000000..e2a5515 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d727bee55fd9985621127bcb7d9bf7174271d27b26f7571c73344c89bac3a2a6 +size 4827 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png.import new file mode 100644 index 0000000..2e40c4c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjr2ngbhpkyse" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1 #63790.png-d7eb52abe4f5e769461eac76a08a525f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1 #63790.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1 #63790.png-d7eb52abe4f5e769461eac76a08a525f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1.png b/extracted/Sprite/char_minifairy_Yellow_Outline_1.png new file mode 100644 index 0000000..606ccba --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd64fa6ab4813d5b83894e313359a58170de0979b87d342c0644255205fe0f96 +size 2213 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_1.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_1.png.import new file mode 100644 index 0000000..ccf1976 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4wtet4h7tfo0" +path="res://.godot/imported/char_minifairy_Yellow_Outline_1.png-78c71c62438abb54602548cfa002d8bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_1.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_1.png-78c71c62438abb54602548cfa002d8bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png new file mode 100644 index 0000000..5c53d64 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926fd64b7b5f17572694598e3889e7935a90b328e1750fa9bfffe6a9cf5db02 +size 17474 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png.import new file mode 100644 index 0000000..e9b1802 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpdtw5t0rp6ms" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64635.png-048f328549416eedad2e65964f927495.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64635.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64635.png-048f328549416eedad2e65964f927495.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png new file mode 100644 index 0000000..cefaa88 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19266fe0db59da91d0454bc1812b8b72394c8bab0d665b656859be96b431910d +size 17893 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png.import new file mode 100644 index 0000000..75ab2e0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pf2pfhf71dag" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64636.png-f0f1856d0301e71e2c33b2bd5b5befd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64636.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64636.png-f0f1856d0301e71e2c33b2bd5b5befd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png new file mode 100644 index 0000000..1fd21ba --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b3a716a505f178b689f1a8153e1924a1f9bab4dff938c4a2aaaca9aaa2535d +size 17729 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png.import new file mode 100644 index 0000000..ba6b007 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0bsesxy0umy6" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64637.png-0d9a7d129c59e83b5644a8eeb1cbd4f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64637.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64637.png-0d9a7d129c59e83b5644a8eeb1cbd4f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png new file mode 100644 index 0000000..0bcf5b1 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dec702fbdd7ec717f020f925c89664dafef86547205efef26c0155ffdeafecf +size 23565 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png.import new file mode 100644 index 0000000..d1cbbbb --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqo31v1c27g3k" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64638.png-b8a94c7b915199fe476675952a7a0f39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64638.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64638.png-b8a94c7b915199fe476675952a7a0f39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png new file mode 100644 index 0000000..5d5a0c4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5040e34df837f0dfa5fe0d96bea846d6ebdead84cbef614d1b848240798aad9 +size 19830 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png.import new file mode 100644 index 0000000..24cc886 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dii2au2a0t0kq" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64639.png-57852cda2d1a8b430e9703f18b95c844.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64639.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64639.png-57852cda2d1a8b430e9703f18b95c844.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png new file mode 100644 index 0000000..5ec3875 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3ef08706db5bf8bc4bad1b76ad0c91edb9d75850c9369be46ac543349e4f85 +size 23224 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png.import new file mode 100644 index 0000000..e87dec3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c22sy8k8mv8go" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64640.png-3335ea02777ad16563db871ecd34bc94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64640.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64640.png-3335ea02777ad16563db871ecd34bc94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png new file mode 100644 index 0000000..0530c12 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6b9148904da0742c700ae132173a5e649aa618ecf06edb6d16ad233d84125b +size 18056 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png.import new file mode 100644 index 0000000..577baa4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp3gnwg5nqvk4" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64641.png-e7e26d18099c49c0023273661c5125f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64641.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64641.png-e7e26d18099c49c0023273661c5125f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png new file mode 100644 index 0000000..7021629 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7fab46b82235fc76243a6c72a6aecc4d93236524431a2552ba1941c36653ea +size 23026 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png.import new file mode 100644 index 0000000..55914b4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uj28ffppvprq" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64642.png-3f169d8da2f3c998953c788a94c69578.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64642.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64642.png-3f169d8da2f3c998953c788a94c69578.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png new file mode 100644 index 0000000..afb5f08 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5df14cbdb39efbcc07964488368fd33b6e2210bac5444fd28669e920b1ccf7 +size 23522 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png.import new file mode 100644 index 0000000..8bc8ed5 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j4hixmd5ta0p" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64643.png-2c0e45d1a2a02598b79be9430f529635.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64643.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64643.png-2c0e45d1a2a02598b79be9430f529635.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png new file mode 100644 index 0000000..e30701e --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bedb7b75b953be845e0bcfe54b233729658fc73d4b0b9151827f2a769e1e883e +size 23025 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png.import new file mode 100644 index 0000000..fdefb97 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ge5u06tus52j" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64644.png-6993a7b117659369e22016a4ef3ee702.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64644.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64644.png-6993a7b117659369e22016a4ef3ee702.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png new file mode 100644 index 0000000..f5d50fc --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b5bc7add394532169aed3b4eb9fcdfae9443db1dd2d8b7924920692c57ba32 +size 17721 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png.import new file mode 100644 index 0000000..bdcd5a8 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5um3dqxdxi02" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64645.png-9a09f394937d39e915d1e5ff09fc5bca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64645.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64645.png-9a09f394937d39e915d1e5ff09fc5bca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png new file mode 100644 index 0000000..4ad769f --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb60b2b0a5d5c7343068cc151b64ffa8d0a07a8eb276c3a5afb44ab51371dd24 +size 20018 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png.import new file mode 100644 index 0000000..d8288c3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crvy28s3h4u0q" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64646.png-1e80c51a75f36cfbb1f5f3b6a7572b1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64646.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64646.png-1e80c51a75f36cfbb1f5f3b6a7572b1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png new file mode 100644 index 0000000..c15f013 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be230f8b263eb5b14003ab829f8fa910c50250923978a0409ef9fc2217b8bb5a +size 24611 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png.import new file mode 100644 index 0000000..46e06e9 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ewvdj51elaqn" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64647.png-ea770bbd8c0609b891930ed3b28b0e93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64647.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64647.png-ea770bbd8c0609b891930ed3b28b0e93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png new file mode 100644 index 0000000..4e45444 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1589e952fefe5127d76a1f9ba6567a93278960a05d3b8053a7062ac996d87c +size 23228 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png.import new file mode 100644 index 0000000..31c59b8 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8ccu7jun31qh" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64648.png-14b31c387d5ef75cb3c153cf61a5fe99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64648.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64648.png-14b31c387d5ef75cb3c153cf61a5fe99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png new file mode 100644 index 0000000..53909ab --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721cde165f7c99c9a1b602b6767ef6ee06832432cdcc258b687e503d894a3e84 +size 17582 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png.import new file mode 100644 index 0000000..d528b66 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ka14ffa481oc" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2 #64649.png-f3982c24b5a1d3cb37b9e15d7b570a35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2 #64649.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2 #64649.png-f3982c24b5a1d3cb37b9e15d7b570a35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2.png b/extracted/Sprite/char_minifairy_Yellow_Outline_2.png new file mode 100644 index 0000000..2bad5a7 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f72abc8b7e2a589bc929b84c61a4bdb87ed14c9d785af22c5f7369b029a05a +size 24778 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_2.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_2.png.import new file mode 100644 index 0000000..ec2e9a3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d00xn5kyrhrdo" +path="res://.godot/imported/char_minifairy_Yellow_Outline_2.png-d89311fb9b3b87a13edfb9ce9ef4cc67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_2.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_2.png-d89311fb9b3b87a13edfb9ce9ef4cc67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png new file mode 100644 index 0000000..7b372c4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014c08c310d2b065e0d9108a60661b934403dc81ddd5f9159ad0cb1ccf28017b +size 1918 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png.import new file mode 100644 index 0000000..c309fc0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba4vm2uxiiy04" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64616.png-5c302f19fe4bfec333ef8c809f3fd339.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64616.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64616.png-5c302f19fe4bfec333ef8c809f3fd339.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png new file mode 100644 index 0000000..c79c356 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de40025aab571483965a9e72910eee9a5898b308dd27c6021cd125f5c959582 +size 2004 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png.import new file mode 100644 index 0000000..ea1b19c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crw7bjybap3fp" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64617.png-a10fb174103990dcd3404009ad9ded2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64617.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64617.png-a10fb174103990dcd3404009ad9ded2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png new file mode 100644 index 0000000..e007855 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d82d0f93548f27ad9fb6910015d96d069a18ef04fccff72cd28f2af068bb844b +size 1929 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png.import new file mode 100644 index 0000000..6e9ebbf --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsvacksmpyfiq" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64618.png-ccebafc865719133f76cca27b5821e7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64618.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64618.png-ccebafc865719133f76cca27b5821e7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png new file mode 100644 index 0000000..67d729d --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69ac65d35023bdb895750e7fa3dcb12e7de1872f65a36337d81f6af0a1bcedf +size 3921 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png.import new file mode 100644 index 0000000..b4b3e88 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3fi23hfrs60e" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64619.png-fe2fb4c31f3b7700234fd5df7cdd9d2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64619.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64619.png-fe2fb4c31f3b7700234fd5df7cdd9d2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png new file mode 100644 index 0000000..2015be6 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b981fbf70e30828eeee13ff9a7fd8e3e84c8effd9ad19aadb8ea06175517416a +size 2437 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png.import new file mode 100644 index 0000000..0272842 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://go1fvtwy0gpa" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64620.png-ec4e9ee54af74dc17600ed3872163097.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64620.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64620.png-ec4e9ee54af74dc17600ed3872163097.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png new file mode 100644 index 0000000..9b5c777 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f2a8fc70257c30dc879f9ac0cb1ba035ef6b7583324848333bc371086f6cbe +size 3813 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png.import new file mode 100644 index 0000000..b2616b0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwsmxx3etoqst" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64621.png-1041d6ead8c352fc2ee2b3a97575db42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64621.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64621.png-1041d6ead8c352fc2ee2b3a97575db42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png new file mode 100644 index 0000000..28ddca0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab2e8ef8964139919571eee7b6a9efc3b09d631509ab285495b4ca2b35841d9 +size 2088 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png.import new file mode 100644 index 0000000..54c1563 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d05spj1qe4ed2" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64622.png-78606285d932e21ece985f75974ae388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64622.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64622.png-78606285d932e21ece985f75974ae388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png new file mode 100644 index 0000000..04134ac --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a049fc167a931c93d0d4a8eb391531b15335c2889c8fe01c9551fc7413e3ffcd +size 3859 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png.import new file mode 100644 index 0000000..8e00f8a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pb53l0xfnvwq" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64623.png-e0040698d48755d4c66788c61d3fd254.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64623.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64623.png-e0040698d48755d4c66788c61d3fd254.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png new file mode 100644 index 0000000..b2bf22c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbb62eff567c73de5365f37103250fdd7fea25eac52aec3307e04244357b128 +size 3799 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png.import new file mode 100644 index 0000000..6a6e78d --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2hsofufriqai" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64624.png-0b271e9aa717d7fa121f6f460ce71cee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64624.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64624.png-0b271e9aa717d7fa121f6f460ce71cee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png new file mode 100644 index 0000000..7478d6f --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdd0bf0b412168ea96dcb4d8b2dc158b2aa63f58e879c8506755bd756b2b68f +size 3760 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png.import new file mode 100644 index 0000000..80b1cbb --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce4lmyttulryw" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64625.png-073602f3a1feecd5cf266259b6d96811.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64625.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64625.png-073602f3a1feecd5cf266259b6d96811.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png new file mode 100644 index 0000000..a07eaa4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cda7a24c8acbe82af2e2f8e46328ff43b4a69e6796424dc6268b8027f4f8c3 +size 1914 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png.import new file mode 100644 index 0000000..b7cbc7e --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnrudp66otq0x" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64626.png-cc4a4dec2402695c186347e7b0b07ea7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64626.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64626.png-cc4a4dec2402695c186347e7b0b07ea7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png new file mode 100644 index 0000000..caec249 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdbf576323750379a3754f114ec847ac822bfedf53787adbea2abbf4e05a6e9 +size 2527 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png.import new file mode 100644 index 0000000..a22f054 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmmhq3ubkaj8x" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64627.png-e2fde452b95b2bd5a2ee1fbf7bf1747e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64627.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64627.png-e2fde452b95b2bd5a2ee1fbf7bf1747e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png new file mode 100644 index 0000000..c3e6a8e --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abaaa4713d2dbfb270ad34ed4d868d5e00778a5281ce9df5ac81ced8e04eae85 +size 4192 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png.import new file mode 100644 index 0000000..32e21e3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u3mmw244shrc" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64628.png-31da8f2e3d2e1702f3ffd096ba49dd27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64628.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64628.png-31da8f2e3d2e1702f3ffd096ba49dd27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png new file mode 100644 index 0000000..c491cab --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498d156243b360d9014bfec31177174c4b5084b238387907d07d9c8a8e6782b1 +size 3809 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png.import new file mode 100644 index 0000000..37f0109 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0n0supsgkmqa" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64629.png-815dbb08557886234350764115fa666c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64629.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64629.png-815dbb08557886234350764115fa666c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png new file mode 100644 index 0000000..d590c4b --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0066f95d74e3d290909f6d234baef05ce2e274f738de60a39a6ea10d3fac0b48 +size 1890 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png.import new file mode 100644 index 0000000..57c9982 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ntupvetusn3" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4 #64630.png-0468e348fd62beebcc10f59d869916e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4 #64630.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4 #64630.png-0468e348fd62beebcc10f59d869916e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4.png b/extracted/Sprite/char_minifairy_Yellow_Outline_4.png new file mode 100644 index 0000000..95060c2 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82527a3cd659d3ac2505f4326dfcac12ee9cf623752c7c12dfd563308e4677e6 +size 4278 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_4.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_4.png.import new file mode 100644 index 0000000..f051661 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfidmbgay3oa2" +path="res://.godot/imported/char_minifairy_Yellow_Outline_4.png-64aeab9730b81ef0fcf9e47c9d65971f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_4.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_4.png-64aeab9730b81ef0fcf9e47c9d65971f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png b/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png new file mode 100644 index 0000000..46ffaae --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a371b9ac858df4428bf6c0309bf6e37f8b0dd8af61d9e8559df840bba296498 +size 8752 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png.import new file mode 100644 index 0000000..1de7cc2 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp8t8mim6dqje" +path="res://.godot/imported/char_minifairy_Yellow_Outline_5 #64664.png-894f966acf948532f26b1633afb77c63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_5 #64664.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_5 #64664.png-894f966acf948532f26b1633afb77c63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_5.png b/extracted/Sprite/char_minifairy_Yellow_Outline_5.png new file mode 100644 index 0000000..79543be --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb898eaf96ebd268e5e0a3a956aadd28c81da0f508d958ea6c126da741b7aec +size 7421 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_5.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_5.png.import new file mode 100644 index 0000000..e595a78 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4hf64kklmxqg" +path="res://.godot/imported/char_minifairy_Yellow_Outline_5.png-5ed9bb4f92c126daa686f1c8fe91c60f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_5.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_5.png-5ed9bb4f92c126daa686f1c8fe91c60f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png new file mode 100644 index 0000000..58c2559 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c3ff31f9b74842173c35528a337e938fa1575614175dd3b3b0dcdbc43ea81e +size 3136 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png.import new file mode 100644 index 0000000..054c39b --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ltjh86tymj7r" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64574.png-0300f5db59dde2bb0c8e24d6258e15e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64574.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64574.png-0300f5db59dde2bb0c8e24d6258e15e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png new file mode 100644 index 0000000..1b60e31 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8613b7d78f5ef05638080ba810d9a040694d957a53378e64dc523208ba3cb0f6 +size 3154 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png.import new file mode 100644 index 0000000..8141d7b --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xfyn8kougyut" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64575.png-472ca3d61ddc8c486e6cdef4f39ec687.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64575.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64575.png-472ca3d61ddc8c486e6cdef4f39ec687.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png new file mode 100644 index 0000000..1380d72 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6027691764b5b682e8463b3d41bf04bb2f39613174c05e4acaf66bb5367a84fc +size 3102 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png.import new file mode 100644 index 0000000..9ec1306 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgwesrulnge3q" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64576.png-47f7223efacf7ac6e5cf58768d10496d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64576.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64576.png-47f7223efacf7ac6e5cf58768d10496d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png new file mode 100644 index 0000000..d19726f --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afe0841092a9ab8d97748966bdbeed725f0dd4822e05c6e19c87da18807a8d3 +size 5641 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png.import new file mode 100644 index 0000000..fbd18ad --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4mpkl1a0v3h4" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64577.png-87216e4ca0ff0b2b4c1edc8547b92432.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64577.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64577.png-87216e4ca0ff0b2b4c1edc8547b92432.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png new file mode 100644 index 0000000..4f3d3c4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed3ae92de29b591d8cc562d608768874faff2405534c0978952e91835b3645b +size 3740 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png.import new file mode 100644 index 0000000..0eda7bd --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k7y00nnrxjv8" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64578.png-c8ec8f38211013919c9c6d43cee07f2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64578.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64578.png-c8ec8f38211013919c9c6d43cee07f2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png new file mode 100644 index 0000000..a8be6da --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829a4441b25c404ad4e556fc248478a62ab6b445fde8cbd2e9d159715b255e65 +size 5574 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png.import new file mode 100644 index 0000000..24b4351 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ftbrm8r4ebg" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64579.png-fcba1adf596b2e9b79c9552938cd970a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64579.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64579.png-fcba1adf596b2e9b79c9552938cd970a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png new file mode 100644 index 0000000..e9fa03c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b280c23d2da347b9ec118099d4ffdfebaccca17bbba3c2b6d852402aef225a +size 3247 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png.import new file mode 100644 index 0000000..e527410 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5naho30cg5u7" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64580.png-88a8df401d75fdf15b4fd4e7670c3a88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64580.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64580.png-88a8df401d75fdf15b4fd4e7670c3a88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png new file mode 100644 index 0000000..0da3580 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d9969c91913ad5aaeac6841528381d2cc1fb1c0ba00ba83d955a06278a295 +size 5465 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png.import new file mode 100644 index 0000000..0a9201c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xrr4aysyvhun" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64581.png-681767a4cf12cf995af3493b145fcf99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64581.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64581.png-681767a4cf12cf995af3493b145fcf99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png new file mode 100644 index 0000000..a2c0502 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780ef3ac2f1236a158a0259275f28bc0aef94090a7794409b62bdc00f0464a59 +size 5587 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png.import new file mode 100644 index 0000000..480d0f4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cysyv1wqvq11k" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64582.png-7edbe1a710ad33750770ff2484456447.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64582.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64582.png-7edbe1a710ad33750770ff2484456447.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png new file mode 100644 index 0000000..a6fc302 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d7cc358c7dda765f53ca82ca0f471e1f7bbfeb222e2f839e7834102761570d +size 5456 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png.import new file mode 100644 index 0000000..a2004f0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brc1yf3x7sxax" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64583.png-8deac7c44b39e4882313ac86982b1481.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64583.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64583.png-8deac7c44b39e4882313ac86982b1481.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png new file mode 100644 index 0000000..eb4fd26 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a039730c4a206882936af955a2f9101e9f77860d7faea382c161736667c97e3 +size 3137 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png.import new file mode 100644 index 0000000..384eb84 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcr5lply4ot8" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64584.png-affb6b41da743d28dc17e15a50b80e42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64584.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64584.png-affb6b41da743d28dc17e15a50b80e42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png new file mode 100644 index 0000000..3ac952a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5db263b12f568a730f526a4111023044bae228d4626e842f5143944b0d5bb0 +size 3856 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png.import new file mode 100644 index 0000000..ebb4262 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://03jtw8a08pfm" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64585.png-c42a0b4d37710432c61c2948753eb784.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64585.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64585.png-c42a0b4d37710432c61c2948753eb784.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png new file mode 100644 index 0000000..180321b --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414da4f3d00b7b03c5db70a859b6c8813ae36a63a864bfb64442c55f30c8cee1 +size 5908 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png.import new file mode 100644 index 0000000..7cae593 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dumse712m4b85" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64586.png-432be41c02ff284e88593976270cb98c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64586.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64586.png-432be41c02ff284e88593976270cb98c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png new file mode 100644 index 0000000..60f8269 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473951b839a5e8a052546836e394b4f73a582831258f0e96f3f6be048ca4189b +size 5509 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png.import new file mode 100644 index 0000000..21074db --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc54jrq51knad" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64587.png-effb3e4f81c099270af9c2e7b09b677a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64587.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64587.png-effb3e4f81c099270af9c2e7b09b677a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png new file mode 100644 index 0000000..cffe428 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39397a5161b518a8da2314bf127f8c6d0a7d37012a0f68f32b2c67f63e459b11 +size 3124 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png.import new file mode 100644 index 0000000..b82e6c8 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2sfnthbcmm41" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6 #64588.png-67127c5fcd6476d110f2cba9f42ccee1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6 #64588.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6 #64588.png-67127c5fcd6476d110f2cba9f42ccee1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6.png b/extracted/Sprite/char_minifairy_Yellow_Outline_6.png new file mode 100644 index 0000000..b221f1e --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f0d1a9117b409f35ba069283917697358a19584589ed545ba8c79c9dffd809 +size 6000 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_6.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_6.png.import new file mode 100644 index 0000000..8a073b3 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb1v8e0aq4fy0" +path="res://.godot/imported/char_minifairy_Yellow_Outline_6.png-8401c6cd57d00178f5ea6f3225e82291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_6.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_6.png-8401c6cd57d00178f5ea6f3225e82291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png new file mode 100644 index 0000000..554c39a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d22adb54936b807022e46107586c4d4c2ece99d9343de7f2f297c13d85538ad +size 6008 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png.import new file mode 100644 index 0000000..231231c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwc4lfhm1836h" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64503.png-685ea1f06747de2e6d728898a0ba3ce1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64503.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64503.png-685ea1f06747de2e6d728898a0ba3ce1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png new file mode 100644 index 0000000..27a5c69 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba7d7362abe16d08344b56c1c88a7d31cf5cbee2a1d8032221b679a07db3926 +size 6027 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png.import new file mode 100644 index 0000000..79982da --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btoqedthy8grr" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64504.png-c5f568f4101b70d64c63f9126f297c1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64504.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64504.png-c5f568f4101b70d64c63f9126f297c1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png new file mode 100644 index 0000000..8528fc8 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767bfca2b82c93ba3bdb04983e0269d3245c9ddfd9248f7295b54f8f8864fafe +size 6277 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png.import new file mode 100644 index 0000000..aaaeb86 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbg5g247jhvgp" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64505.png-2ae40d47a5db67164e1cf1610d537998.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64505.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64505.png-2ae40d47a5db67164e1cf1610d537998.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png new file mode 100644 index 0000000..873fad8 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f81f2bb5be9decf3c761515343365e4ea7f37e71ad9a9c6f8cf7ebb8338f99 +size 9771 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png.import new file mode 100644 index 0000000..3c9cbf4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1x0s6hi2axm2" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64506.png-16b76cb243808610f5cc649ac1c7f453.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64506.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64506.png-16b76cb243808610f5cc649ac1c7f453.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png new file mode 100644 index 0000000..5d02dab --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d6fc9ea1d61d16dca33d835bbb6a64bbc81b637ae1b9729d8cc5e5fd1ece38 +size 7601 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png.import new file mode 100644 index 0000000..e256010 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4bqlx6rc5akm" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64507.png-a5868175dcab58edd8539405a6f9434b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64507.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64507.png-a5868175dcab58edd8539405a6f9434b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png new file mode 100644 index 0000000..0b626f5 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc73b3862c9a91c5b2ff5a019d993a5b219f25be6a26a00e3acb84d3d6fb7d1a +size 9799 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png.import new file mode 100644 index 0000000..1aa577d --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr15ejyxt6hec" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64508.png-8a6a0d8b03985980c0cfa5ad526d0571.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64508.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64508.png-8a6a0d8b03985980c0cfa5ad526d0571.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png new file mode 100644 index 0000000..81f551e --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d96ae4653b63a59feca7e5c5e821b90d3ae57c0c453192aaf99c170734e9eb5 +size 6374 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png.import new file mode 100644 index 0000000..958a174 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btdbg7bb3jeid" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64509.png-878fe0702209415a207194cb1bd8d814.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64509.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64509.png-878fe0702209415a207194cb1bd8d814.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png new file mode 100644 index 0000000..edeb559 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7837c3ead2e58dc5270be365a003c198398a26ab60207e3a4ea00c37e2752faa +size 9572 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png.import new file mode 100644 index 0000000..94827db --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blcw03pr2eu2e" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64510.png-49f0a950ae5a387f2571907b85b8585d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64510.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64510.png-49f0a950ae5a387f2571907b85b8585d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png new file mode 100644 index 0000000..ec6223f --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97999de2d19b3edb1f263ee0529fd485c505c65bf6eea9c1cec8c5124e0f4d66 +size 9578 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png.import new file mode 100644 index 0000000..9898d5f --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xre58fr38bda" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64511.png-fa6034b6c5a96617386d7338884a8f61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64511.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64511.png-fa6034b6c5a96617386d7338884a8f61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png new file mode 100644 index 0000000..3248872 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc29e494045fecc4c013ce7459bd086ee517f0d5f0ecd7df68bdf5b4403be8c +size 9773 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png.import new file mode 100644 index 0000000..aa79ba0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ebc7umvux6bw" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64512.png-aee7e40d8e26e8138407d7a9db48f691.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64512.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64512.png-aee7e40d8e26e8138407d7a9db48f691.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png new file mode 100644 index 0000000..f7374a4 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1dfca57bac259796ccbf21645a12a0686c9a3d8e77700af6a4006d7aeb4d44 +size 6262 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png.import new file mode 100644 index 0000000..ef39649 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7m071co3tr37" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64513.png-cc337304e391070e5ab683102000ae85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64513.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64513.png-cc337304e391070e5ab683102000ae85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png new file mode 100644 index 0000000..06bc11a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf241a98cc0f85411eefcb88c3bd34007f3a9e1ff090a315b3544763bf546d39 +size 7822 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png.import new file mode 100644 index 0000000..9a0e342 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcaquyll0lbt" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64514.png-4502f8f83e672c99e8b36cd00873ed8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64514.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64514.png-4502f8f83e672c99e8b36cd00873ed8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png new file mode 100644 index 0000000..3cafaa9 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6e4d78ea3c395963c0a11e34217bf84b6370fdd2c47e001ea984bc98942536 +size 10651 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png.import new file mode 100644 index 0000000..6d1a008 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx8kb3rwsvv76" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64515.png-5d711f89b9b769d33fa4a1c7fd30b502.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64515.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64515.png-5d711f89b9b769d33fa4a1c7fd30b502.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png new file mode 100644 index 0000000..a444bd0 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03ec3e63f85b57a068c9205f2ff1124ddf971ec36e48aee9f925b3840f459c2 +size 9840 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png.import new file mode 100644 index 0000000..ceeeb5a --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfk14dadw0a4g" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64516.png-c06f289aab2a89e4e23c30c3c177d7f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64516.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64516.png-c06f289aab2a89e4e23c30c3c177d7f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png new file mode 100644 index 0000000..590a38c --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98464cf3559d5d5ea9ca057a3767a46fbb59a4cfa8fcf74291cc50c8163e3f1 +size 6318 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png.import new file mode 100644 index 0000000..542d5b7 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnigm8551n4q0" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7 #64517.png-55cbebdf2d11d77b35fc267f09a5b500.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7 #64517.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7 #64517.png-55cbebdf2d11d77b35fc267f09a5b500.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7.png b/extracted/Sprite/char_minifairy_Yellow_Outline_7.png new file mode 100644 index 0000000..527bb1d --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f6de9ca1534bcc1c09b6adb06b5700cf40b76c2531c9dd5054e0514e75f7ed +size 10811 diff --git a/extracted/Sprite/char_minifairy_Yellow_Outline_7.png.import b/extracted/Sprite/char_minifairy_Yellow_Outline_7.png.import new file mode 100644 index 0000000..58442f5 --- /dev/null +++ b/extracted/Sprite/char_minifairy_Yellow_Outline_7.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c23xy3jdy7fyb" +path="res://.godot/imported/char_minifairy_Yellow_Outline_7.png-36cc365204d8efdcff1b347e8dc54acb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_minifairy_Yellow_Outline_7.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline_7.png-36cc365204d8efdcff1b347e8dc54acb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_0 #63693.png b/extracted/Sprite/char_mouse1_outline_0 #63693.png new file mode 100644 index 0000000..2cd64e2 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_0 #63693.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c1bba4b06a03890236e84a671f6bae1077fadb417ad2e31368290c0e22f6b4 +size 44393 diff --git a/extracted/Sprite/char_mouse1_outline_0 #63693.png.import b/extracted/Sprite/char_mouse1_outline_0 #63693.png.import new file mode 100644 index 0000000..61f5bf9 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_0 #63693.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6o87vtb2kwjn" +path="res://.godot/imported/char_mouse1_outline_0 #63693.png-4ed12aa7d9ee219ef02fdc07cd2cae30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_0 #63693.png" +dest_files=["res://.godot/imported/char_mouse1_outline_0 #63693.png-4ed12aa7d9ee219ef02fdc07cd2cae30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_0.png b/extracted/Sprite/char_mouse1_outline_0.png new file mode 100644 index 0000000..875f468 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5454c096616a1cc4c9636cf048366b2756e0e0d6529aeba6252f5916c843eff5 +size 36137 diff --git a/extracted/Sprite/char_mouse1_outline_0.png.import b/extracted/Sprite/char_mouse1_outline_0.png.import new file mode 100644 index 0000000..0ccbe6e --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0f0gjskc4tg2" +path="res://.godot/imported/char_mouse1_outline_0.png-f89866ae7c2cf4837827a3f8e935d650.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_0.png" +dest_files=["res://.godot/imported/char_mouse1_outline_0.png-f89866ae7c2cf4837827a3f8e935d650.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_1 #63639.png b/extracted/Sprite/char_mouse1_outline_1 #63639.png new file mode 100644 index 0000000..ead7c6a --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_1 #63639.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6071ea80d09a049697452877ec3a367c2467f9369888e922e008b402b0767f +size 23350 diff --git a/extracted/Sprite/char_mouse1_outline_1 #63639.png.import b/extracted/Sprite/char_mouse1_outline_1 #63639.png.import new file mode 100644 index 0000000..68253c4 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_1 #63639.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bknfdegb2mrsr" +path="res://.godot/imported/char_mouse1_outline_1 #63639.png-d696269be37cc79f56d273f53f027311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_1 #63639.png" +dest_files=["res://.godot/imported/char_mouse1_outline_1 #63639.png-d696269be37cc79f56d273f53f027311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_1.png b/extracted/Sprite/char_mouse1_outline_1.png new file mode 100644 index 0000000..f88015c --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbeb3651f5dfde6ab1bbcdcab570faed6a37b5648575f6192eedea9e2bc97e23 +size 18294 diff --git a/extracted/Sprite/char_mouse1_outline_1.png.import b/extracted/Sprite/char_mouse1_outline_1.png.import new file mode 100644 index 0000000..89d32b8 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0ju4cewipplf" +path="res://.godot/imported/char_mouse1_outline_1.png-1cf3946b820ac984032e0ac97aa0fccb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_1.png" +dest_files=["res://.godot/imported/char_mouse1_outline_1.png-1cf3946b820ac984032e0ac97aa0fccb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_2 #63664.png b/extracted/Sprite/char_mouse1_outline_2 #63664.png new file mode 100644 index 0000000..28d7176 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_2 #63664.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9eb99d01d1c48ca838b9daee5e7f913f13e96037a6441037ede82197b238f1 +size 37584 diff --git a/extracted/Sprite/char_mouse1_outline_2 #63664.png.import b/extracted/Sprite/char_mouse1_outline_2 #63664.png.import new file mode 100644 index 0000000..8edbbd8 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_2 #63664.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8uw8mskxffk4" +path="res://.godot/imported/char_mouse1_outline_2 #63664.png-96b4111cbeab5593b5329d7b6ed6f4bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_2 #63664.png" +dest_files=["res://.godot/imported/char_mouse1_outline_2 #63664.png-96b4111cbeab5593b5329d7b6ed6f4bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_2.png b/extracted/Sprite/char_mouse1_outline_2.png new file mode 100644 index 0000000..470182e --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a102697e28cdae70e05a267add03f1ce878c8da0f670dd575ca657bd126f53 +size 29112 diff --git a/extracted/Sprite/char_mouse1_outline_2.png.import b/extracted/Sprite/char_mouse1_outline_2.png.import new file mode 100644 index 0000000..fa1f34b --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fm0kewxtt43m" +path="res://.godot/imported/char_mouse1_outline_2.png-cb264c4d8b7f407fd2c38d1ec1f6752e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_2.png" +dest_files=["res://.godot/imported/char_mouse1_outline_2.png-cb264c4d8b7f407fd2c38d1ec1f6752e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_3 #63599.png b/extracted/Sprite/char_mouse1_outline_3 #63599.png new file mode 100644 index 0000000..eecfd5c --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_3 #63599.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c66d3f10d7147dc167481f282e3b364fa8511525ed8adb9e50941f48ac32f1 +size 24599 diff --git a/extracted/Sprite/char_mouse1_outline_3 #63599.png.import b/extracted/Sprite/char_mouse1_outline_3 #63599.png.import new file mode 100644 index 0000000..97ac5c0 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_3 #63599.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du0bwnxdo0gfg" +path="res://.godot/imported/char_mouse1_outline_3 #63599.png-ab668b25a3ad15308c0f7b6756ae142c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_3 #63599.png" +dest_files=["res://.godot/imported/char_mouse1_outline_3 #63599.png-ab668b25a3ad15308c0f7b6756ae142c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_3.png b/extracted/Sprite/char_mouse1_outline_3.png new file mode 100644 index 0000000..b5aa42a --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e6e1638e6dd4099613042ca99192feebd33c1fb7eb892996ce04121c274e09 +size 20040 diff --git a/extracted/Sprite/char_mouse1_outline_3.png.import b/extracted/Sprite/char_mouse1_outline_3.png.import new file mode 100644 index 0000000..7097e5a --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://274ll45mxfq" +path="res://.godot/imported/char_mouse1_outline_3.png-25c82befd91164cccbd5c1814dc28b94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_3.png" +dest_files=["res://.godot/imported/char_mouse1_outline_3.png-25c82befd91164cccbd5c1814dc28b94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_4 #64723.png b/extracted/Sprite/char_mouse1_outline_4 #64723.png new file mode 100644 index 0000000..863bf9c --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_4 #64723.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0d924aed74043ac4a8db1faba208035e755c80a69e9cee2bab606b22d40ff7 +size 3969 diff --git a/extracted/Sprite/char_mouse1_outline_4 #64723.png.import b/extracted/Sprite/char_mouse1_outline_4 #64723.png.import new file mode 100644 index 0000000..62ab2c1 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_4 #64723.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmfe5n2pmeobi" +path="res://.godot/imported/char_mouse1_outline_4 #64723.png-5bd892d15ba4f6de5d1feec86a8ba860.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_4 #64723.png" +dest_files=["res://.godot/imported/char_mouse1_outline_4 #64723.png-5bd892d15ba4f6de5d1feec86a8ba860.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_4.png b/extracted/Sprite/char_mouse1_outline_4.png new file mode 100644 index 0000000..c2f7e30 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2104af6887ed5c9d64a7c4b362bc8f6b7b017131f9f52244221bad870f31c8 +size 6491 diff --git a/extracted/Sprite/char_mouse1_outline_4.png.import b/extracted/Sprite/char_mouse1_outline_4.png.import new file mode 100644 index 0000000..884a2bf --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx2t6rwi5gsc7" +path="res://.godot/imported/char_mouse1_outline_4.png-939010bd30336233c53a4e7040acec10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_4.png" +dest_files=["res://.godot/imported/char_mouse1_outline_4.png-939010bd30336233c53a4e7040acec10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_5 #64563.png b/extracted/Sprite/char_mouse1_outline_5 #64563.png new file mode 100644 index 0000000..18f6fa9 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_5 #64563.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995a7729cf4fbcf7c58bcdb2d631fc9b08ee2d01edeaa6aefff9e6de44657fe4 +size 2554 diff --git a/extracted/Sprite/char_mouse1_outline_5 #64563.png.import b/extracted/Sprite/char_mouse1_outline_5 #64563.png.import new file mode 100644 index 0000000..9b81671 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_5 #64563.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biwlfa6j3vpmp" +path="res://.godot/imported/char_mouse1_outline_5 #64563.png-e1e6bcac882de407e7e4b730ca930a05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_5 #64563.png" +dest_files=["res://.godot/imported/char_mouse1_outline_5 #64563.png-e1e6bcac882de407e7e4b730ca930a05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_5.png b/extracted/Sprite/char_mouse1_outline_5.png new file mode 100644 index 0000000..7e7f3bb --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4bd24ca23c2005b41e6b80c9155f9d3f4169529bfbbb58cc05984ad290873c +size 4395 diff --git a/extracted/Sprite/char_mouse1_outline_5.png.import b/extracted/Sprite/char_mouse1_outline_5.png.import new file mode 100644 index 0000000..c5d050a --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b388eegueow68" +path="res://.godot/imported/char_mouse1_outline_5.png-7c9a5a08b1ac872ea9da2d71982bbc55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_5.png" +dest_files=["res://.godot/imported/char_mouse1_outline_5.png-7c9a5a08b1ac872ea9da2d71982bbc55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_6 #63754.png b/extracted/Sprite/char_mouse1_outline_6 #63754.png new file mode 100644 index 0000000..c582f88 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_6 #63754.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0390244250f410b7abe36a5bddca2f2ad39b76cb2864b91e3fe9d38cea566c7f +size 8824 diff --git a/extracted/Sprite/char_mouse1_outline_6 #63754.png.import b/extracted/Sprite/char_mouse1_outline_6 #63754.png.import new file mode 100644 index 0000000..e648a4d --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_6 #63754.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcxmyltdtmror" +path="res://.godot/imported/char_mouse1_outline_6 #63754.png-f8d03fb2cf4fd8c8598698780dab1b4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_6 #63754.png" +dest_files=["res://.godot/imported/char_mouse1_outline_6 #63754.png-f8d03fb2cf4fd8c8598698780dab1b4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse1_outline_6.png b/extracted/Sprite/char_mouse1_outline_6.png new file mode 100644 index 0000000..612a176 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fea0ba3fb937d4758d82669d1eb323c218ebbe291287632f8188ef20daeacd7 +size 4834 diff --git a/extracted/Sprite/char_mouse1_outline_6.png.import b/extracted/Sprite/char_mouse1_outline_6.png.import new file mode 100644 index 0000000..5578522 --- /dev/null +++ b/extracted/Sprite/char_mouse1_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1fettc82og8f" +path="res://.godot/imported/char_mouse1_outline_6.png-48f4162c76efc5c22022b4cc81680ad1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse1_outline_6.png" +dest_files=["res://.godot/imported/char_mouse1_outline_6.png-48f4162c76efc5c22022b4cc81680ad1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_0 #63729.png b/extracted/Sprite/char_mouse2_outline_0 #63729.png new file mode 100644 index 0000000..ad53619 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_0 #63729.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5415bb6ef19a603266aaea3792e2545f754595e6bb3a3614a00df0c6630a15f +size 43580 diff --git a/extracted/Sprite/char_mouse2_outline_0 #63729.png.import b/extracted/Sprite/char_mouse2_outline_0 #63729.png.import new file mode 100644 index 0000000..4fa2db1 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_0 #63729.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s7ji706eebpq" +path="res://.godot/imported/char_mouse2_outline_0 #63729.png-e1234a323af0e2eec51262d7d10287f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_0 #63729.png" +dest_files=["res://.godot/imported/char_mouse2_outline_0 #63729.png-e1234a323af0e2eec51262d7d10287f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_0.png b/extracted/Sprite/char_mouse2_outline_0.png new file mode 100644 index 0000000..91f06a5 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85c17cff24ac5b3f551ecb43404b3a863c5f1c1c1245a3122e0930d87fe5d78 +size 36175 diff --git a/extracted/Sprite/char_mouse2_outline_0.png.import b/extracted/Sprite/char_mouse2_outline_0.png.import new file mode 100644 index 0000000..92ab0ab --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7co4i4ik8d6u" +path="res://.godot/imported/char_mouse2_outline_0.png-571b61fd7f18d5dc8ae281c0dc6c9bde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_0.png" +dest_files=["res://.godot/imported/char_mouse2_outline_0.png-571b61fd7f18d5dc8ae281c0dc6c9bde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_1 #64724.png b/extracted/Sprite/char_mouse2_outline_1 #64724.png new file mode 100644 index 0000000..adcd94f --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_1 #64724.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035cec87c8bf980154626da8175e87caa99a31637000436dffbe42c9aa60e8b4 +size 16858 diff --git a/extracted/Sprite/char_mouse2_outline_1 #64724.png.import b/extracted/Sprite/char_mouse2_outline_1 #64724.png.import new file mode 100644 index 0000000..b03e1c6 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_1 #64724.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://465pobyfj4y7" +path="res://.godot/imported/char_mouse2_outline_1 #64724.png-2cd3bf519c26e5a8197567462619c952.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_1 #64724.png" +dest_files=["res://.godot/imported/char_mouse2_outline_1 #64724.png-2cd3bf519c26e5a8197567462619c952.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_1.png b/extracted/Sprite/char_mouse2_outline_1.png new file mode 100644 index 0000000..b7aadf8 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047e807d4998ff19f4264ca4ddda9c72f796a550fe83ba51092fd39f8df6b598 +size 21099 diff --git a/extracted/Sprite/char_mouse2_outline_1.png.import b/extracted/Sprite/char_mouse2_outline_1.png.import new file mode 100644 index 0000000..35ecab5 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lt0re14xmuis" +path="res://.godot/imported/char_mouse2_outline_1.png-81e12c29510508c72fcc28c56fc9333e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_1.png" +dest_files=["res://.godot/imported/char_mouse2_outline_1.png-81e12c29510508c72fcc28c56fc9333e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_2 #64555.png b/extracted/Sprite/char_mouse2_outline_2 #64555.png new file mode 100644 index 0000000..4c2be4f --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_2 #64555.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf4dd037dc065ad1697c10cf5fe68c759eee2b99d13fa51576d433ff6bd04cc +size 38160 diff --git a/extracted/Sprite/char_mouse2_outline_2 #64555.png.import b/extracted/Sprite/char_mouse2_outline_2 #64555.png.import new file mode 100644 index 0000000..ab64ea6 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_2 #64555.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btwivwei8kfob" +path="res://.godot/imported/char_mouse2_outline_2 #64555.png-21c3311f2c5ebf73b588467ed8e6a83e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_2 #64555.png" +dest_files=["res://.godot/imported/char_mouse2_outline_2 #64555.png-21c3311f2c5ebf73b588467ed8e6a83e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_2.png b/extracted/Sprite/char_mouse2_outline_2.png new file mode 100644 index 0000000..2792128 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e62c30895047c4a62f250d6d73c0b9b23f1827057f2d91fc56dc0ac4a955e25 +size 45185 diff --git a/extracted/Sprite/char_mouse2_outline_2.png.import b/extracted/Sprite/char_mouse2_outline_2.png.import new file mode 100644 index 0000000..a3ae534 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj4madyommsgk" +path="res://.godot/imported/char_mouse2_outline_2.png-d13af3029e6fec4da7b7c17aa7466367.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_2.png" +dest_files=["res://.godot/imported/char_mouse2_outline_2.png-d13af3029e6fec4da7b7c17aa7466367.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_3 #64396.png b/extracted/Sprite/char_mouse2_outline_3 #64396.png new file mode 100644 index 0000000..f5d5234 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_3 #64396.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15606180babd2de305846a0287b68683f1666bd01a3eaeb4dfa1975df8935cd +size 21402 diff --git a/extracted/Sprite/char_mouse2_outline_3 #64396.png.import b/extracted/Sprite/char_mouse2_outline_3 #64396.png.import new file mode 100644 index 0000000..4e36238 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_3 #64396.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2ofpde73icu5" +path="res://.godot/imported/char_mouse2_outline_3 #64396.png-f06ff3686d8ec99558d585d3adf26c1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_3 #64396.png" +dest_files=["res://.godot/imported/char_mouse2_outline_3 #64396.png-f06ff3686d8ec99558d585d3adf26c1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_3.png b/extracted/Sprite/char_mouse2_outline_3.png new file mode 100644 index 0000000..f976b35 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dff1c359470255f7a1af720bdfd0a2870562cd438c3074cdbfbaeccb1a72c65 +size 17089 diff --git a/extracted/Sprite/char_mouse2_outline_3.png.import b/extracted/Sprite/char_mouse2_outline_3.png.import new file mode 100644 index 0000000..fabce67 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x2ypysj7do1" +path="res://.godot/imported/char_mouse2_outline_3.png-d6a494b54d1eb2be7e37d285a822215c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_3.png" +dest_files=["res://.godot/imported/char_mouse2_outline_3.png-d6a494b54d1eb2be7e37d285a822215c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_4 #64428.png b/extracted/Sprite/char_mouse2_outline_4 #64428.png new file mode 100644 index 0000000..d432434 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_4 #64428.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b0ce821b68e6f946f3fd50bf292de0c78b4ab342edeaa6cc36d2dc6f3bc146 +size 4959 diff --git a/extracted/Sprite/char_mouse2_outline_4 #64428.png.import b/extracted/Sprite/char_mouse2_outline_4 #64428.png.import new file mode 100644 index 0000000..afe6d08 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_4 #64428.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bttvmsdehlke1" +path="res://.godot/imported/char_mouse2_outline_4 #64428.png-e8674a25641fafa34225a83712641e89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_4 #64428.png" +dest_files=["res://.godot/imported/char_mouse2_outline_4 #64428.png-e8674a25641fafa34225a83712641e89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_4.png b/extracted/Sprite/char_mouse2_outline_4.png new file mode 100644 index 0000000..2976cc9 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e2e6a3e6f95b627f74f657f6070de01eb0700098334f5b85d824778a8a44e4 +size 3088 diff --git a/extracted/Sprite/char_mouse2_outline_4.png.import b/extracted/Sprite/char_mouse2_outline_4.png.import new file mode 100644 index 0000000..8014a55 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgw8x2qdbwxmr" +path="res://.godot/imported/char_mouse2_outline_4.png-dff2d3c67500ba76563be6a0c614da81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_4.png" +dest_files=["res://.godot/imported/char_mouse2_outline_4.png-dff2d3c67500ba76563be6a0c614da81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_5 #64432.png b/extracted/Sprite/char_mouse2_outline_5 #64432.png new file mode 100644 index 0000000..c50a063 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_5 #64432.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9493b8121f81ce4b3b9735d6636034f4bd979f86b21dafa9add6b2a8ab6572a2 +size 6719 diff --git a/extracted/Sprite/char_mouse2_outline_5 #64432.png.import b/extracted/Sprite/char_mouse2_outline_5 #64432.png.import new file mode 100644 index 0000000..3641289 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_5 #64432.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb2jm0l35h76y" +path="res://.godot/imported/char_mouse2_outline_5 #64432.png-0dc6e0129557bf7349f378d6ca6c86df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_5 #64432.png" +dest_files=["res://.godot/imported/char_mouse2_outline_5 #64432.png-0dc6e0129557bf7349f378d6ca6c86df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_5.png b/extracted/Sprite/char_mouse2_outline_5.png new file mode 100644 index 0000000..4077802 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64a4406c3a0fb482eadbca453d7cb276e80f9ddd5befdaab1141a5eaff0c3f9 +size 4290 diff --git a/extracted/Sprite/char_mouse2_outline_5.png.import b/extracted/Sprite/char_mouse2_outline_5.png.import new file mode 100644 index 0000000..57c8b4d --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxy18ptvsq4c7" +path="res://.godot/imported/char_mouse2_outline_5.png-bb05ad98d21f8e3d0a106f996e126171.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_5.png" +dest_files=["res://.godot/imported/char_mouse2_outline_5.png-bb05ad98d21f8e3d0a106f996e126171.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_6 #64382.png b/extracted/Sprite/char_mouse2_outline_6 #64382.png new file mode 100644 index 0000000..c3d5263 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_6 #64382.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44050930907e691b27e03e51fc85f9d4566366f4af060725aba9fa99d57f7811 +size 9040 diff --git a/extracted/Sprite/char_mouse2_outline_6 #64382.png.import b/extracted/Sprite/char_mouse2_outline_6 #64382.png.import new file mode 100644 index 0000000..608d1c5 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_6 #64382.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dolru7g54xxk7" +path="res://.godot/imported/char_mouse2_outline_6 #64382.png-22f5c82c5d1cd694321b446027a1d75c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_6 #64382.png" +dest_files=["res://.godot/imported/char_mouse2_outline_6 #64382.png-22f5c82c5d1cd694321b446027a1d75c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_mouse2_outline_6.png b/extracted/Sprite/char_mouse2_outline_6.png new file mode 100644 index 0000000..107e098 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249f0389fdb71e404951338d450ddaebd17a096f8f6d4fb709c9573c5a62165f +size 5132 diff --git a/extracted/Sprite/char_mouse2_outline_6.png.import b/extracted/Sprite/char_mouse2_outline_6.png.import new file mode 100644 index 0000000..e49df88 --- /dev/null +++ b/extracted/Sprite/char_mouse2_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7to5gf1qmlpv" +path="res://.godot/imported/char_mouse2_outline_6.png-c2af6e072b72a15895df207e67042e32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_mouse2_outline_6.png" +dest_files=["res://.godot/imported/char_mouse2_outline_6.png-c2af6e072b72a15895df207e67042e32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_0 #64318.png b/extracted/Sprite/char_oldman_outline_0 #64318.png new file mode 100644 index 0000000..15e36ff --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_0 #64318.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79599b4c2db8dd69cb957b38f675e37fffc44a01a1ef24a64d954cd9b9f72482 +size 34326 diff --git a/extracted/Sprite/char_oldman_outline_0 #64318.png.import b/extracted/Sprite/char_oldman_outline_0 #64318.png.import new file mode 100644 index 0000000..88f40c2 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_0 #64318.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byct60sb82v5n" +path="res://.godot/imported/char_oldman_outline_0 #64318.png-f6fd7fefa547dd7aac680134d479268b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_0 #64318.png" +dest_files=["res://.godot/imported/char_oldman_outline_0 #64318.png-f6fd7fefa547dd7aac680134d479268b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_0.png b/extracted/Sprite/char_oldman_outline_0.png new file mode 100644 index 0000000..9a0edf9 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0183fd4325043b8ec17d9a4ce82b3798fc7b3d5e8c7be7ecfcf6aa0000253a +size 40198 diff --git a/extracted/Sprite/char_oldman_outline_0.png.import b/extracted/Sprite/char_oldman_outline_0.png.import new file mode 100644 index 0000000..aace305 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgs7eccipenav" +path="res://.godot/imported/char_oldman_outline_0.png-acd2632ab5dc7f63d8e25fc5f6a1a0ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_0.png" +dest_files=["res://.godot/imported/char_oldman_outline_0.png-acd2632ab5dc7f63d8e25fc5f6a1a0ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_1 #64261.png b/extracted/Sprite/char_oldman_outline_1 #64261.png new file mode 100644 index 0000000..830ead9 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_1 #64261.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1198ce9f658ac45c55afa0a5562d5fcb1aa4dab1891cf7c46786586c6bc32c11 +size 6670 diff --git a/extracted/Sprite/char_oldman_outline_1 #64261.png.import b/extracted/Sprite/char_oldman_outline_1 #64261.png.import new file mode 100644 index 0000000..a5291f9 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_1 #64261.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckblxihytwrmr" +path="res://.godot/imported/char_oldman_outline_1 #64261.png-58eb35efc9d7d55cef0ac82d1936edc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_1 #64261.png" +dest_files=["res://.godot/imported/char_oldman_outline_1 #64261.png-58eb35efc9d7d55cef0ac82d1936edc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_1.png b/extracted/Sprite/char_oldman_outline_1.png new file mode 100644 index 0000000..d6ec657 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef9881699ec9977b1b9a97df793d6be7e2aea5be05831676db3178cf2280c82 +size 9213 diff --git a/extracted/Sprite/char_oldman_outline_1.png.import b/extracted/Sprite/char_oldman_outline_1.png.import new file mode 100644 index 0000000..ac152df --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgaexsujeaba0" +path="res://.godot/imported/char_oldman_outline_1.png-08769f38e2bd8c14473bce3b8674a8ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_1.png" +dest_files=["res://.godot/imported/char_oldman_outline_1.png-08769f38e2bd8c14473bce3b8674a8ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_2 #64405.png b/extracted/Sprite/char_oldman_outline_2 #64405.png new file mode 100644 index 0000000..aa013ed --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_2 #64405.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4952dfdc099e52e3649e9946ad01021f1a3c178285367e8910662b4fd38a639 +size 27084 diff --git a/extracted/Sprite/char_oldman_outline_2 #64405.png.import b/extracted/Sprite/char_oldman_outline_2 #64405.png.import new file mode 100644 index 0000000..667930d --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_2 #64405.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqekk0vb5dl5x" +path="res://.godot/imported/char_oldman_outline_2 #64405.png-d193c093cfd3bd1e34e3ad8928627488.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_2 #64405.png" +dest_files=["res://.godot/imported/char_oldman_outline_2 #64405.png-d193c093cfd3bd1e34e3ad8928627488.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_2.png b/extracted/Sprite/char_oldman_outline_2.png new file mode 100644 index 0000000..29cdd5c --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e1c85e13acc557be953db175a8a28d4e4e5400ca162212052eec429ff6e4c5 +size 33357 diff --git a/extracted/Sprite/char_oldman_outline_2.png.import b/extracted/Sprite/char_oldman_outline_2.png.import new file mode 100644 index 0000000..c388743 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk4pcr6d81mf4" +path="res://.godot/imported/char_oldman_outline_2.png-fc9ecb15df1c774257337d2a2f2b01e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_2.png" +dest_files=["res://.godot/imported/char_oldman_outline_2.png-fc9ecb15df1c774257337d2a2f2b01e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_3 #64296.png b/extracted/Sprite/char_oldman_outline_3 #64296.png new file mode 100644 index 0000000..c096aaf --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_3 #64296.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b230833b18f122fbb30ad2260e99b113cce0e3a67a0c3e5e5907d306a2ca15b5 +size 9017 diff --git a/extracted/Sprite/char_oldman_outline_3 #64296.png.import b/extracted/Sprite/char_oldman_outline_3 #64296.png.import new file mode 100644 index 0000000..6f0b306 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_3 #64296.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jbb82wup3ly" +path="res://.godot/imported/char_oldman_outline_3 #64296.png-8f537f2d1c3e38a51ebfabc5ced49774.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_3 #64296.png" +dest_files=["res://.godot/imported/char_oldman_outline_3 #64296.png-8f537f2d1c3e38a51ebfabc5ced49774.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_3.png b/extracted/Sprite/char_oldman_outline_3.png new file mode 100644 index 0000000..93498c2 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06da53422252304d39cf0f93c430e513835573541b22f6d71672ef27e30d867 +size 12446 diff --git a/extracted/Sprite/char_oldman_outline_3.png.import b/extracted/Sprite/char_oldman_outline_3.png.import new file mode 100644 index 0000000..96d8553 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du62h3a2mc13x" +path="res://.godot/imported/char_oldman_outline_3.png-4387b3df26dca62ad9314f6590114bec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_3.png" +dest_files=["res://.godot/imported/char_oldman_outline_3.png-4387b3df26dca62ad9314f6590114bec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_4 #63685.png b/extracted/Sprite/char_oldman_outline_4 #63685.png new file mode 100644 index 0000000..447a2f2 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_4 #63685.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8a9c78e692a6f4a311ad3232f8bf55cd3b01076be29ab89bf8c267f7a77b70 +size 8270 diff --git a/extracted/Sprite/char_oldman_outline_4 #63685.png.import b/extracted/Sprite/char_oldman_outline_4 #63685.png.import new file mode 100644 index 0000000..b8f4158 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_4 #63685.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck8fvep6rgfrr" +path="res://.godot/imported/char_oldman_outline_4 #63685.png-0588cb010316ee210933053e302a92aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_4 #63685.png" +dest_files=["res://.godot/imported/char_oldman_outline_4 #63685.png-0588cb010316ee210933053e302a92aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_4.png b/extracted/Sprite/char_oldman_outline_4.png new file mode 100644 index 0000000..501f020 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffe380210fefd15f2a145b0be83c6a5062445d6c9d1db31d4c71b4504202ae9 +size 11705 diff --git a/extracted/Sprite/char_oldman_outline_4.png.import b/extracted/Sprite/char_oldman_outline_4.png.import new file mode 100644 index 0000000..fa2e16f --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqt1xi8y0gt7h" +path="res://.godot/imported/char_oldman_outline_4.png-fe6e2bdac254eb2d3711f5cf152e4357.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_4.png" +dest_files=["res://.godot/imported/char_oldman_outline_4.png-fe6e2bdac254eb2d3711f5cf152e4357.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_5 #64497.png b/extracted/Sprite/char_oldman_outline_5 #64497.png new file mode 100644 index 0000000..a49c893 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_5 #64497.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a81e15057b094b93af8e0c020b7660867a02df12d60bc2978f90be698c49d73 +size 3567 diff --git a/extracted/Sprite/char_oldman_outline_5 #64497.png.import b/extracted/Sprite/char_oldman_outline_5 #64497.png.import new file mode 100644 index 0000000..247ab27 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_5 #64497.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbvxf5b80rx8v" +path="res://.godot/imported/char_oldman_outline_5 #64497.png-2afbd17d9d881aa2dd187bfd46552cd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_5 #64497.png" +dest_files=["res://.godot/imported/char_oldman_outline_5 #64497.png-2afbd17d9d881aa2dd187bfd46552cd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_5.png b/extracted/Sprite/char_oldman_outline_5.png new file mode 100644 index 0000000..47707fe --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ec1ed80cdbbaffb8f83e8ffb799a7f85b3e4ee1c1e77d805c92c54b9f987f7 +size 5459 diff --git a/extracted/Sprite/char_oldman_outline_5.png.import b/extracted/Sprite/char_oldman_outline_5.png.import new file mode 100644 index 0000000..45d6d8c --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cevcq0iwd8rva" +path="res://.godot/imported/char_oldman_outline_5.png-c83ceb1ab9010f9abc9abd8dcb62d516.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_5.png" +dest_files=["res://.godot/imported/char_oldman_outline_5.png-c83ceb1ab9010f9abc9abd8dcb62d516.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_6 #63619.png b/extracted/Sprite/char_oldman_outline_6 #63619.png new file mode 100644 index 0000000..d42cb2b --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_6 #63619.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b5bfabe0d07b1480fe1aad1aee5b51d311135501f03ae04df56c9875c0b92b +size 3159 diff --git a/extracted/Sprite/char_oldman_outline_6 #63619.png.import b/extracted/Sprite/char_oldman_outline_6 #63619.png.import new file mode 100644 index 0000000..d29b43e --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_6 #63619.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ugdhtvffiv6" +path="res://.godot/imported/char_oldman_outline_6 #63619.png-474138400d3ee2d42a66699d306f95cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_6 #63619.png" +dest_files=["res://.godot/imported/char_oldman_outline_6 #63619.png-474138400d3ee2d42a66699d306f95cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_oldman_outline_6.png b/extracted/Sprite/char_oldman_outline_6.png new file mode 100644 index 0000000..c903dd4 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79ff473d4576502af31434b11fce5bb89d5fe2108e2f4aad303b9fc619f1ea0 +size 4670 diff --git a/extracted/Sprite/char_oldman_outline_6.png.import b/extracted/Sprite/char_oldman_outline_6.png.import new file mode 100644 index 0000000..8a5b8f8 --- /dev/null +++ b/extracted/Sprite/char_oldman_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o6twwd0yxs5n" +path="res://.godot/imported/char_oldman_outline_6.png-c8a7d240b12c11c29b07b13056826a82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_oldman_outline_6.png" +dest_files=["res://.godot/imported/char_oldman_outline_6.png-c8a7d240b12c11c29b07b13056826a82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_0 #63556.png b/extracted/Sprite/char_worker_outline_0 #63556.png new file mode 100644 index 0000000..a9d7f98 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_0 #63556.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d45230e155eb2c95462fc877c0188ad00078fd08a99a67b8a637175a62fe838 +size 30638 diff --git a/extracted/Sprite/char_worker_outline_0 #63556.png.import b/extracted/Sprite/char_worker_outline_0 #63556.png.import new file mode 100644 index 0000000..edf8c22 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_0 #63556.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4nsdx6rs4hff" +path="res://.godot/imported/char_worker_outline_0 #63556.png-eafecdefaaac789c77bc5b39eb52c476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_0 #63556.png" +dest_files=["res://.godot/imported/char_worker_outline_0 #63556.png-eafecdefaaac789c77bc5b39eb52c476.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_0.png b/extracted/Sprite/char_worker_outline_0.png new file mode 100644 index 0000000..9ddf231 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a170cc71f134f3e34a2eca7a39c3328b7ba0ab52286a6953e801f3db1cd12b +size 37734 diff --git a/extracted/Sprite/char_worker_outline_0.png.import b/extracted/Sprite/char_worker_outline_0.png.import new file mode 100644 index 0000000..6e1c92c --- /dev/null +++ b/extracted/Sprite/char_worker_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do8sqt2n7xfug" +path="res://.godot/imported/char_worker_outline_0.png-e0bc7eabacb3128ce477ecee070b3ca4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_0.png" +dest_files=["res://.godot/imported/char_worker_outline_0.png-e0bc7eabacb3128ce477ecee070b3ca4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_1 #63699.png b/extracted/Sprite/char_worker_outline_1 #63699.png new file mode 100644 index 0000000..b367aaa --- /dev/null +++ b/extracted/Sprite/char_worker_outline_1 #63699.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666e5181202e3c65d55e02f49babedc5028d6da317160886996fc74126b588c6 +size 29569 diff --git a/extracted/Sprite/char_worker_outline_1 #63699.png.import b/extracted/Sprite/char_worker_outline_1 #63699.png.import new file mode 100644 index 0000000..51af5c3 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_1 #63699.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dofppp66e2y77" +path="res://.godot/imported/char_worker_outline_1 #63699.png-0028d0fa5bfdb95ab7514f98d7d2e575.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_1 #63699.png" +dest_files=["res://.godot/imported/char_worker_outline_1 #63699.png-0028d0fa5bfdb95ab7514f98d7d2e575.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_1.png b/extracted/Sprite/char_worker_outline_1.png new file mode 100644 index 0000000..29b3e87 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693d6678d1eff08ef099701f766dd33a7e563bd253e845346f7b7bac94c66ee6 +size 36617 diff --git a/extracted/Sprite/char_worker_outline_1.png.import b/extracted/Sprite/char_worker_outline_1.png.import new file mode 100644 index 0000000..8b39750 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ha1xgpuaj6ub" +path="res://.godot/imported/char_worker_outline_1.png-c34079e183e3febc3635cf9c623740a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_1.png" +dest_files=["res://.godot/imported/char_worker_outline_1.png-c34079e183e3febc3635cf9c623740a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_2 #64351.png b/extracted/Sprite/char_worker_outline_2 #64351.png new file mode 100644 index 0000000..291831a --- /dev/null +++ b/extracted/Sprite/char_worker_outline_2 #64351.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76dd5cf4c9afbf4ba1c2588703b350328b279622841097e405d21917fca2b9f +size 19121 diff --git a/extracted/Sprite/char_worker_outline_2 #64351.png.import b/extracted/Sprite/char_worker_outline_2 #64351.png.import new file mode 100644 index 0000000..f4e3ece --- /dev/null +++ b/extracted/Sprite/char_worker_outline_2 #64351.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca11t58bm8b4t" +path="res://.godot/imported/char_worker_outline_2 #64351.png-9854c7715c36c39e9c1274c3d28df7a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_2 #64351.png" +dest_files=["res://.godot/imported/char_worker_outline_2 #64351.png-9854c7715c36c39e9c1274c3d28df7a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_2.png b/extracted/Sprite/char_worker_outline_2.png new file mode 100644 index 0000000..e7cff7f --- /dev/null +++ b/extracted/Sprite/char_worker_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc6a3b53b5f0164c1cc8014c8fa134bdf674b7626f72813a14faee2f97f748db +size 23803 diff --git a/extracted/Sprite/char_worker_outline_2.png.import b/extracted/Sprite/char_worker_outline_2.png.import new file mode 100644 index 0000000..fa19bdc --- /dev/null +++ b/extracted/Sprite/char_worker_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8rtryhvkgwq4" +path="res://.godot/imported/char_worker_outline_2.png-7cde1add590318e180dafb5a537f9df6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_2.png" +dest_files=["res://.godot/imported/char_worker_outline_2.png-7cde1add590318e180dafb5a537f9df6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_3 #64392.png b/extracted/Sprite/char_worker_outline_3 #64392.png new file mode 100644 index 0000000..1a980e0 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_3 #64392.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fe559bbeaae9e9bd7adb375becefd864963caff67b70e12655392152354420 +size 17331 diff --git a/extracted/Sprite/char_worker_outline_3 #64392.png.import b/extracted/Sprite/char_worker_outline_3 #64392.png.import new file mode 100644 index 0000000..88538de --- /dev/null +++ b/extracted/Sprite/char_worker_outline_3 #64392.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bihs2d6dphg0x" +path="res://.godot/imported/char_worker_outline_3 #64392.png-7e45b6b8a88a6bdcbec4857b89d3578a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_3 #64392.png" +dest_files=["res://.godot/imported/char_worker_outline_3 #64392.png-7e45b6b8a88a6bdcbec4857b89d3578a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_3.png b/extracted/Sprite/char_worker_outline_3.png new file mode 100644 index 0000000..0d8e5c3 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ed6d8b0c104387e1b801f5c256032d8a7757028a31afba7a00c4dbee3867bc +size 21949 diff --git a/extracted/Sprite/char_worker_outline_3.png.import b/extracted/Sprite/char_worker_outline_3.png.import new file mode 100644 index 0000000..ff10ed3 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dawkaqf0s4r3i" +path="res://.godot/imported/char_worker_outline_3.png-4803e1123517d8e26b3fc7f3cd52f138.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_3.png" +dest_files=["res://.godot/imported/char_worker_outline_3.png-4803e1123517d8e26b3fc7f3cd52f138.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_4 #64422.png b/extracted/Sprite/char_worker_outline_4 #64422.png new file mode 100644 index 0000000..70440b5 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_4 #64422.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba88e4ae541b99d7fbf03a4187143a7e966a355fe5bbba99ec7b83b3f176f3d +size 3063 diff --git a/extracted/Sprite/char_worker_outline_4 #64422.png.import b/extracted/Sprite/char_worker_outline_4 #64422.png.import new file mode 100644 index 0000000..7e61cf1 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_4 #64422.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnx2vf6ljkbvr" +path="res://.godot/imported/char_worker_outline_4 #64422.png-2965e5749840cb834634b5abbe42cac3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_4 #64422.png" +dest_files=["res://.godot/imported/char_worker_outline_4 #64422.png-2965e5749840cb834634b5abbe42cac3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_4.png b/extracted/Sprite/char_worker_outline_4.png new file mode 100644 index 0000000..ab9e49c --- /dev/null +++ b/extracted/Sprite/char_worker_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cabb74fd68bbf51c1a3746dffcb7f00655fcbbd8363aea94d5edb0498204b04 +size 4921 diff --git a/extracted/Sprite/char_worker_outline_4.png.import b/extracted/Sprite/char_worker_outline_4.png.import new file mode 100644 index 0000000..914db1b --- /dev/null +++ b/extracted/Sprite/char_worker_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnihfw13klcv" +path="res://.godot/imported/char_worker_outline_4.png-6967316eba7f88c2210f6996ee13ca70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_4.png" +dest_files=["res://.godot/imported/char_worker_outline_4.png-6967316eba7f88c2210f6996ee13ca70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_5 #63714.png b/extracted/Sprite/char_worker_outline_5 #63714.png new file mode 100644 index 0000000..62c4bc8 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_5 #63714.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f8d43e9a51ab51503228fcd8d446e9d7dc09e6d4d7e2be2d8955546533854a +size 3402 diff --git a/extracted/Sprite/char_worker_outline_5 #63714.png.import b/extracted/Sprite/char_worker_outline_5 #63714.png.import new file mode 100644 index 0000000..39840c3 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_5 #63714.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iewmevj0dni5" +path="res://.godot/imported/char_worker_outline_5 #63714.png-449da5e43b604a6ded5d9d5681af7f58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_5 #63714.png" +dest_files=["res://.godot/imported/char_worker_outline_5 #63714.png-449da5e43b604a6ded5d9d5681af7f58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_5.png b/extracted/Sprite/char_worker_outline_5.png new file mode 100644 index 0000000..8dde4a8 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992b9f0f1f61abeae975f5ebfeaa108974e186b9a5dc1bb5004cef9562f80c35 +size 5587 diff --git a/extracted/Sprite/char_worker_outline_5.png.import b/extracted/Sprite/char_worker_outline_5.png.import new file mode 100644 index 0000000..51cb0c6 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgr23t8kp3o7r" +path="res://.godot/imported/char_worker_outline_5.png-3f7ebe3bbd8e0aa71e530f5e1d0b9469.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_5.png" +dest_files=["res://.godot/imported/char_worker_outline_5.png-3f7ebe3bbd8e0aa71e530f5e1d0b9469.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_6 #63660.png b/extracted/Sprite/char_worker_outline_6 #63660.png new file mode 100644 index 0000000..39e5c52 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_6 #63660.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14dd6c556f26b9e1931e7b018611abd06b13e3c77d6761390b3f900ac8d18f97 +size 17150 diff --git a/extracted/Sprite/char_worker_outline_6 #63660.png.import b/extracted/Sprite/char_worker_outline_6 #63660.png.import new file mode 100644 index 0000000..d94030a --- /dev/null +++ b/extracted/Sprite/char_worker_outline_6 #63660.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfays0qlcyu4n" +path="res://.godot/imported/char_worker_outline_6 #63660.png-331a421e2393bdf27e2a9e3d9fdb22f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_6 #63660.png" +dest_files=["res://.godot/imported/char_worker_outline_6 #63660.png-331a421e2393bdf27e2a9e3d9fdb22f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/char_worker_outline_6.png b/extracted/Sprite/char_worker_outline_6.png new file mode 100644 index 0000000..ca1a5c9 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88162191567680dbb1c51125fa0d9f2a4b4c1c31784163c2ec8c30c861826189 +size 21984 diff --git a/extracted/Sprite/char_worker_outline_6.png.import b/extracted/Sprite/char_worker_outline_6.png.import new file mode 100644 index 0000000..26c1c46 --- /dev/null +++ b/extracted/Sprite/char_worker_outline_6.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4lbmatjxtkwd" +path="res://.godot/imported/char_worker_outline_6.png-0e001f2ee44ef65e8ef41235a15f7acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/char_worker_outline_6.png" +dest_files=["res://.godot/imported/char_worker_outline_6.png-0e001f2ee44ef65e8ef41235a15f7acc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_0 #64599.png b/extracted/Sprite/horse_brotherhood_outline_0 #64599.png new file mode 100644 index 0000000..45b628f --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_0 #64599.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bad29b0bbd4982411003bd3fdb457e12fb85be64b184bccb2218c510312868 +size 35439 diff --git a/extracted/Sprite/horse_brotherhood_outline_0 #64599.png.import b/extracted/Sprite/horse_brotherhood_outline_0 #64599.png.import new file mode 100644 index 0000000..7489e38 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_0 #64599.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dli1fx8ykleih" +path="res://.godot/imported/horse_brotherhood_outline_0 #64599.png-6c9a138541128035c9a74e5249433859.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_0 #64599.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_0 #64599.png-6c9a138541128035c9a74e5249433859.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_0.png b/extracted/Sprite/horse_brotherhood_outline_0.png new file mode 100644 index 0000000..29b0a63 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482ee7c44648636fbaaa783c3fca7170b9498b5d8b5d84bce0f0f2df7fbc4f4c +size 45084 diff --git a/extracted/Sprite/horse_brotherhood_outline_0.png.import b/extracted/Sprite/horse_brotherhood_outline_0.png.import new file mode 100644 index 0000000..0101af4 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://81uxw1cp241v" +path="res://.godot/imported/horse_brotherhood_outline_0.png-394d4743db3f316de343c6dcdb45e6eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_0.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_0.png-394d4743db3f316de343c6dcdb45e6eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_2 #64570.png b/extracted/Sprite/horse_brotherhood_outline_2 #64570.png new file mode 100644 index 0000000..899dfab --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_2 #64570.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc1f842dc115955c1f979cf1a291a7856bc305211a27fb29d93f9d91eea5449 +size 32404 diff --git a/extracted/Sprite/horse_brotherhood_outline_2 #64570.png.import b/extracted/Sprite/horse_brotherhood_outline_2 #64570.png.import new file mode 100644 index 0000000..bfef11b --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_2 #64570.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3dfws307ocju" +path="res://.godot/imported/horse_brotherhood_outline_2 #64570.png-311ff953f6e721478256ba681ebd7adf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_2 #64570.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_2 #64570.png-311ff953f6e721478256ba681ebd7adf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_2.png b/extracted/Sprite/horse_brotherhood_outline_2.png new file mode 100644 index 0000000..dc778c9 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fef43b5d361ece530e3bc433a1d4ccf0dbdc3028067cae1a08599c272fa5c03 +size 42930 diff --git a/extracted/Sprite/horse_brotherhood_outline_2.png.import b/extracted/Sprite/horse_brotherhood_outline_2.png.import new file mode 100644 index 0000000..c0aeb47 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbakg2dbwivx4" +path="res://.godot/imported/horse_brotherhood_outline_2.png-d91cd9c48607e3d116110b65383ce26f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_2.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_2.png-d91cd9c48607e3d116110b65383ce26f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_4 #64720.png b/extracted/Sprite/horse_brotherhood_outline_4 #64720.png new file mode 100644 index 0000000..4ef51ec --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_4 #64720.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d83db2d6ee0c7baa06519381f8134abf6c2d8b1794e5d24b2304e47ca64390 +size 6393 diff --git a/extracted/Sprite/horse_brotherhood_outline_4 #64720.png.import b/extracted/Sprite/horse_brotherhood_outline_4 #64720.png.import new file mode 100644 index 0000000..a6d1a7a --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_4 #64720.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvvq4fsh1xi12" +path="res://.godot/imported/horse_brotherhood_outline_4 #64720.png-84d9c732595876f72cc560faadd0b67b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_4 #64720.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_4 #64720.png-84d9c732595876f72cc560faadd0b67b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_4.png b/extracted/Sprite/horse_brotherhood_outline_4.png new file mode 100644 index 0000000..ebbfd02 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264f576e71670b19dc73a8f804ebeba42d98834c1c02312868fac9fe09ecbb07 +size 11470 diff --git a/extracted/Sprite/horse_brotherhood_outline_4.png.import b/extracted/Sprite/horse_brotherhood_outline_4.png.import new file mode 100644 index 0000000..33d8d31 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8lm25obj5pt" +path="res://.godot/imported/horse_brotherhood_outline_4.png-c4bcbeddfe3b893964ba8db7c3f5ef63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_4.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_4.png-c4bcbeddfe3b893964ba8db7c3f5ef63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/horse_brotherhood_outline_5.png b/extracted/Sprite/horse_brotherhood_outline_5.png new file mode 100644 index 0000000..65af5c6 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42708d09c150b6a01ef5a1316d5fc9facc9703cdab45e463ff7089adae6abb9a +size 2196 diff --git a/extracted/Sprite/horse_brotherhood_outline_5.png.import b/extracted/Sprite/horse_brotherhood_outline_5.png.import new file mode 100644 index 0000000..9fc4bb4 --- /dev/null +++ b/extracted/Sprite/horse_brotherhood_outline_5.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8wuplpbtvhrk" +path="res://.godot/imported/horse_brotherhood_outline_5.png-be4445dda03ae439365b16938fb66dd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/horse_brotherhood_outline_5.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline_5.png-be4445dda03ae439365b16938fb66dd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/item_fishingrod_outline_0 #63776.png b/extracted/Sprite/item_fishingrod_outline_0 #63776.png new file mode 100644 index 0000000..fa8ea51 --- /dev/null +++ b/extracted/Sprite/item_fishingrod_outline_0 #63776.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62beb0922e42b7e55f2af47f63f5c236528f38819034ef125b02409b1841af91 +size 55009 diff --git a/extracted/Sprite/item_fishingrod_outline_0 #63776.png.import b/extracted/Sprite/item_fishingrod_outline_0 #63776.png.import new file mode 100644 index 0000000..8524b0c --- /dev/null +++ b/extracted/Sprite/item_fishingrod_outline_0 #63776.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ptu5f7g1ba" +path="res://.godot/imported/item_fishingrod_outline_0 #63776.png-1e27bc392eab87589946a981db0adb9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/item_fishingrod_outline_0 #63776.png" +dest_files=["res://.godot/imported/item_fishingrod_outline_0 #63776.png-1e27bc392eab87589946a981db0adb9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/item_fishingrod_outline_0.png b/extracted/Sprite/item_fishingrod_outline_0.png new file mode 100644 index 0000000..16948c2 --- /dev/null +++ b/extracted/Sprite/item_fishingrod_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3748b1635e9f3bf6ac56e851a62a8fe469371dd817aaa17700bb7e781185cd03 +size 29199 diff --git a/extracted/Sprite/item_fishingrod_outline_0.png.import b/extracted/Sprite/item_fishingrod_outline_0.png.import new file mode 100644 index 0000000..81768fb --- /dev/null +++ b/extracted/Sprite/item_fishingrod_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpk33x5d3lrx6" +path="res://.godot/imported/item_fishingrod_outline_0.png-09df7c24b94756da7a70109b5ccb71f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/item_fishingrod_outline_0.png" +dest_files=["res://.godot/imported/item_fishingrod_outline_0.png-09df7c24b94756da7a70109b5ccb71f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/item_stickerbook_outline_0.png b/extracted/Sprite/item_stickerbook_outline_0.png new file mode 100644 index 0000000..d814f7d --- /dev/null +++ b/extracted/Sprite/item_stickerbook_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe3ef1d2c67fa15343629f989c46b67ba8f6733f83991591c713c1e1a3cb1ef +size 10533 diff --git a/extracted/Sprite/item_stickerbook_outline_0.png.import b/extracted/Sprite/item_stickerbook_outline_0.png.import new file mode 100644 index 0000000..2a748b0 --- /dev/null +++ b/extracted/Sprite/item_stickerbook_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://13sbkgto15lj" +path="res://.godot/imported/item_stickerbook_outline_0.png-823a40a600ac4c391c19696eb184b4a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/item_stickerbook_outline_0.png" +dest_files=["res://.godot/imported/item_stickerbook_outline_0.png-823a40a600ac4c391c19696eb184b4a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png b/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png new file mode 100644 index 0000000..4c45d35 --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d68570a192a24bf83c09fdff991d471814ed40c9a5cd9cbdf38177c77fbe60 +size 32387 diff --git a/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png.import b/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png.import new file mode 100644 index 0000000..3695324 --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_0 #64500.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df7l5nruj2f6q" +path="res://.godot/imported/sloth_brotherhood_outline_0 #64500.png-c97f44e1b29c0ca183156752c432dcc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/sloth_brotherhood_outline_0 #64500.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline_0 #64500.png-c97f44e1b29c0ca183156752c432dcc3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/sloth_brotherhood_outline_0.png b/extracted/Sprite/sloth_brotherhood_outline_0.png new file mode 100644 index 0000000..c6e2bc8 --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b528b932891fa85baab37134e1586fdcf82e073c7798af95e026bc07274d5fd +size 23213 diff --git a/extracted/Sprite/sloth_brotherhood_outline_0.png.import b/extracted/Sprite/sloth_brotherhood_outline_0.png.import new file mode 100644 index 0000000..f93264d --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_0.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4lqhxv7ihyv5" +path="res://.godot/imported/sloth_brotherhood_outline_0.png-367f9e1b7211ee7daea1fe8237ae2942.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/sloth_brotherhood_outline_0.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline_0.png-367f9e1b7211ee7daea1fe8237ae2942.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png b/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png new file mode 100644 index 0000000..17d88a1 --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd76cfc35c9ce55bed89ebd024211cc9f2d666cd7d7b316422d1739c1cf1ad92 +size 33815 diff --git a/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png.import b/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png.import new file mode 100644 index 0000000..014d51a --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_2 #64302.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb2wnx8i2qnqm" +path="res://.godot/imported/sloth_brotherhood_outline_2 #64302.png-06362d92d65d4134b0b3e56fc0e5fff6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/sloth_brotherhood_outline_2 #64302.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline_2 #64302.png-06362d92d65d4134b0b3e56fc0e5fff6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/sloth_brotherhood_outline_2.png b/extracted/Sprite/sloth_brotherhood_outline_2.png new file mode 100644 index 0000000..534f78f --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a12ee7bd37bd0e069c1f675323fc67384a6812df6639b070b917a9207444e08 +size 24409 diff --git a/extracted/Sprite/sloth_brotherhood_outline_2.png.import b/extracted/Sprite/sloth_brotherhood_outline_2.png.import new file mode 100644 index 0000000..752357c --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgrrvguqcy6cx" +path="res://.godot/imported/sloth_brotherhood_outline_2.png-a68089dff74a2b968657df4c0d501cd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/sloth_brotherhood_outline_2.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline_2.png-a68089dff74a2b968657df4c0d501cd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Sprite/sloth_brotherhood_outline_4.png b/extracted/Sprite/sloth_brotherhood_outline_4.png new file mode 100644 index 0000000..92f7ea7 --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5eb8701531b92b009bd2f5517aebc9e694a16388bb80bda49ae1161c82b430b +size 2281 diff --git a/extracted/Sprite/sloth_brotherhood_outline_4.png.import b/extracted/Sprite/sloth_brotherhood_outline_4.png.import new file mode 100644 index 0000000..73a924a --- /dev/null +++ b/extracted/Sprite/sloth_brotherhood_outline_4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6oya572j0krg" +path="res://.godot/imported/sloth_brotherhood_outline_4.png-19d5bd5245aed2479874409cc426c809.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Sprite/sloth_brotherhood_outline_4.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline_4.png-19d5bd5245aed2479874409cc426c809.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/AlchemistHouseSticker.png b/extracted/Texture2D/AlchemistHouseSticker.png new file mode 100644 index 0000000..1a65258 --- /dev/null +++ b/extracted/Texture2D/AlchemistHouseSticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ddd0cc6f2a6c9b1374a04da53920f141daccd4c03273d70da95e65cc8fee6c +size 78803 diff --git a/extracted/Texture2D/AlchemistHouseSticker.png.import b/extracted/Texture2D/AlchemistHouseSticker.png.import new file mode 100644 index 0000000..b3fb30e --- /dev/null +++ b/extracted/Texture2D/AlchemistHouseSticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d33cuwlachulv" +path="res://.godot/imported/AlchemistHouseSticker.png-12d60e929bd7ee7b9f2010aeae1b196f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/AlchemistHouseSticker.png" +dest_files=["res://.godot/imported/AlchemistHouseSticker.png-12d60e929bd7ee7b9f2010aeae1b196f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Alpaca_outline.png b/extracted/Texture2D/Alpaca_outline.png new file mode 100644 index 0000000..a26b732 --- /dev/null +++ b/extracted/Texture2D/Alpaca_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1a48c18a554cf6f015c423afaa435f28ea8f0ed2dc5032e6710aa85c4059a0 +size 145356 diff --git a/extracted/Texture2D/Alpaca_outline.png.import b/extracted/Texture2D/Alpaca_outline.png.import new file mode 100644 index 0000000..f801cf3 --- /dev/null +++ b/extracted/Texture2D/Alpaca_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn3x3cuuvs1ma" +path="res://.godot/imported/Alpaca_outline.png-98418d9d302e6b22b88c8c45807c7620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Alpaca_outline.png" +dest_files=["res://.godot/imported/Alpaca_outline.png-98418d9d302e6b22b88c8c45807c7620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Archer Cloth #62878.png b/extracted/Texture2D/Archer Cloth #62878.png new file mode 100644 index 0000000..f401f4e --- /dev/null +++ b/extracted/Texture2D/Archer Cloth #62878.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8769109ea20cd63cea5934cebb5f33b0403bec9a20b026d5c44116861bcd93ac +size 151058 diff --git a/extracted/Texture2D/Archer Cloth #62878.png.import b/extracted/Texture2D/Archer Cloth #62878.png.import new file mode 100644 index 0000000..96c5c30 --- /dev/null +++ b/extracted/Texture2D/Archer Cloth #62878.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nbbmdofaejue" +path="res://.godot/imported/Archer Cloth #62878.png-d523e69524a821e30dca05010b8d8008.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Archer Cloth #62878.png" +dest_files=["res://.godot/imported/Archer Cloth #62878.png-d523e69524a821e30dca05010b8d8008.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Archer Hat Sticker.png b/extracted/Texture2D/Archer Hat Sticker.png new file mode 100644 index 0000000..06a2e44 --- /dev/null +++ b/extracted/Texture2D/Archer Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d36833bf1e4b925583e47074850af029d323e317bf44efd833da888081630e +size 42427 diff --git a/extracted/Texture2D/Archer Hat Sticker.png.import b/extracted/Texture2D/Archer Hat Sticker.png.import new file mode 100644 index 0000000..1b5710d --- /dev/null +++ b/extracted/Texture2D/Archer Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgya6cqmukt8u" +path="res://.godot/imported/Archer Hat Sticker.png-65d0f7b350174b82fdda2993f9ccdcc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Archer Hat Sticker.png" +dest_files=["res://.godot/imported/Archer Hat Sticker.png-65d0f7b350174b82fdda2993f9ccdcc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Archer Hat.png b/extracted/Texture2D/Archer Hat.png new file mode 100644 index 0000000..ac32480 --- /dev/null +++ b/extracted/Texture2D/Archer Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8590651e75bcfee2f24fb0c8891b0b4d1445995d278f5d850ccf8e3c8aa07ce2 +size 154939 diff --git a/extracted/Texture2D/Archer Hat.png.import b/extracted/Texture2D/Archer Hat.png.import new file mode 100644 index 0000000..f6082af --- /dev/null +++ b/extracted/Texture2D/Archer Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df07qwpb1me37" +path="res://.godot/imported/Archer Hat.png-3db849cb29fef2798e3126950beb2512.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Archer Hat.png" +dest_files=["res://.godot/imported/Archer Hat.png-3db849cb29fef2798e3126950beb2512.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Archer cloth Sticker.png b/extracted/Texture2D/Archer cloth Sticker.png new file mode 100644 index 0000000..936e154 --- /dev/null +++ b/extracted/Texture2D/Archer cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6337cab6e94ea6a2d1b320e93f928d8ba56cb696ee3e13cb2b75bfb14f99477 +size 40318 diff --git a/extracted/Texture2D/Archer cloth Sticker.png.import b/extracted/Texture2D/Archer cloth Sticker.png.import new file mode 100644 index 0000000..e2f75ff --- /dev/null +++ b/extracted/Texture2D/Archer cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkcq8k2n1j7tc" +path="res://.godot/imported/Archer cloth Sticker.png-68566e94295eddc5a38d009b404c5d9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Archer cloth Sticker.png" +dest_files=["res://.godot/imported/Archer cloth Sticker.png-68566e94295eddc5a38d009b404c5d9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/BH Evil cloth Sticker.png b/extracted/Texture2D/BH Evil cloth Sticker.png new file mode 100644 index 0000000..c20182a --- /dev/null +++ b/extracted/Texture2D/BH Evil cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b1de85021ec3479348200d040148793d07c783cc833a7747b89006bc539e0b +size 45596 diff --git a/extracted/Texture2D/BH Evil cloth Sticker.png.import b/extracted/Texture2D/BH Evil cloth Sticker.png.import new file mode 100644 index 0000000..1ceb7c9 --- /dev/null +++ b/extracted/Texture2D/BH Evil cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://41hplio7exbd" +path="res://.godot/imported/BH Evil cloth Sticker.png-6d0227f14ef76c9f1623722c06fefbf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/BH Evil cloth Sticker.png" +dest_files=["res://.godot/imported/BH Evil cloth Sticker.png-6d0227f14ef76c9f1623722c06fefbf4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/BH Good cloth Sticker.png b/extracted/Texture2D/BH Good cloth Sticker.png new file mode 100644 index 0000000..6a7283f --- /dev/null +++ b/extracted/Texture2D/BH Good cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4de0baa6c7df8af4350d811c643a2f206d07587e8d24cb5fed795e07be005c2 +size 48026 diff --git a/extracted/Texture2D/BH Good cloth Sticker.png.import b/extracted/Texture2D/BH Good cloth Sticker.png.import new file mode 100644 index 0000000..d600948 --- /dev/null +++ b/extracted/Texture2D/BH Good cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cac63rfqnhdx" +path="res://.godot/imported/BH Good cloth Sticker.png-93e61ef72b1ce34c0c1b230ecfb9b7ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/BH Good cloth Sticker.png" +dest_files=["res://.godot/imported/BH Good cloth Sticker.png-93e61ef72b1ce34c0c1b230ecfb9b7ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/BH Neutral cloth Sticker.png b/extracted/Texture2D/BH Neutral cloth Sticker.png new file mode 100644 index 0000000..01074d3 --- /dev/null +++ b/extracted/Texture2D/BH Neutral cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132a0502c9421364f32a199e1bf465d3fb555c16de9ae0c4fd3ecf189ac44762 +size 46437 diff --git a/extracted/Texture2D/BH Neutral cloth Sticker.png.import b/extracted/Texture2D/BH Neutral cloth Sticker.png.import new file mode 100644 index 0000000..c66278a --- /dev/null +++ b/extracted/Texture2D/BH Neutral cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkmywqc4cpd5k" +path="res://.godot/imported/BH Neutral cloth Sticker.png-b5bf689214f1bc47c2ff6cd9a8a12532.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/BH Neutral cloth Sticker.png" +dest_files=["res://.godot/imported/BH Neutral cloth Sticker.png-b5bf689214f1bc47c2ff6cd9a8a12532.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Basic Hat Sticker.png b/extracted/Texture2D/Basic Hat Sticker.png new file mode 100644 index 0000000..f0696a5 --- /dev/null +++ b/extracted/Texture2D/Basic Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e184e0b7ec8a84a3d388531f3c461e31005f125b1a5392e4a2ae96744fa17053 +size 49325 diff --git a/extracted/Texture2D/Basic Hat Sticker.png.import b/extracted/Texture2D/Basic Hat Sticker.png.import new file mode 100644 index 0000000..cb8804b --- /dev/null +++ b/extracted/Texture2D/Basic Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpxi01jv2gesc" +path="res://.godot/imported/Basic Hat Sticker.png-d8aed5feb53ea3b5af26513ab770d6b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Basic Hat Sticker.png" +dest_files=["res://.godot/imported/Basic Hat Sticker.png-d8aed5feb53ea3b5af26513ab770d6b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Basic Hat.png b/extracted/Texture2D/Basic Hat.png new file mode 100644 index 0000000..d1f3c6b --- /dev/null +++ b/extracted/Texture2D/Basic Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319e0467ef5c3385ec2f97e64a61fc30d463cc610e134f282506a924ead5de7d +size 173263 diff --git a/extracted/Texture2D/Basic Hat.png.import b/extracted/Texture2D/Basic Hat.png.import new file mode 100644 index 0000000..a4c1892 --- /dev/null +++ b/extracted/Texture2D/Basic Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ldq1bagw3xkv" +path="res://.godot/imported/Basic Hat.png-fc2082e9b62b2cfb2b2e39015ac42a96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Basic Hat.png" +dest_files=["res://.godot/imported/Basic Hat.png-fc2082e9b62b2cfb2b2e39015ac42a96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/BoatStickers.png b/extracted/Texture2D/BoatStickers.png new file mode 100644 index 0000000..2385d4e --- /dev/null +++ b/extracted/Texture2D/BoatStickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f42d63cc93ccfeff01eed89ae777854e39be136bc297a5c842a5b6f5128e052 +size 50774 diff --git a/extracted/Texture2D/BoatStickers.png.import b/extracted/Texture2D/BoatStickers.png.import new file mode 100644 index 0000000..f54442f --- /dev/null +++ b/extracted/Texture2D/BoatStickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c83ottdpwujyu" +path="res://.godot/imported/BoatStickers.png-d8feec2e7e38cf1802831bbc938472ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/BoatStickers.png" +dest_files=["res://.godot/imported/BoatStickers.png-d8feec2e7e38cf1802831bbc938472ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Bow_Trophy_outline.png b/extracted/Texture2D/Bow_Trophy_outline.png new file mode 100644 index 0000000..27b2ecd --- /dev/null +++ b/extracted/Texture2D/Bow_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd57f6b6a938c15056ce532c73c8bee91113a41d28ab4af38e5559c18c0ecddc +size 44277 diff --git a/extracted/Texture2D/Bow_Trophy_outline.png.import b/extracted/Texture2D/Bow_Trophy_outline.png.import new file mode 100644 index 0000000..1057bcd --- /dev/null +++ b/extracted/Texture2D/Bow_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://py8kqik0p3l4" +path="res://.godot/imported/Bow_Trophy_outline.png-858cf9e600dc16b982c68bb67bc9f3a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Bow_Trophy_outline.png" +dest_files=["res://.godot/imported/Bow_Trophy_outline.png-858cf9e600dc16b982c68bb67bc9f3a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Bridge_v1.png b/extracted/Texture2D/Bridge_v1.png new file mode 100644 index 0000000..4a738da --- /dev/null +++ b/extracted/Texture2D/Bridge_v1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e7b83fb18ac8d58e731dd2e810a8d5bd6c541e58f6fe5018c828f2b905949c +size 448176 diff --git a/extracted/Texture2D/Bridge_v1.png.import b/extracted/Texture2D/Bridge_v1.png.import new file mode 100644 index 0000000..ecd97f2 --- /dev/null +++ b/extracted/Texture2D/Bridge_v1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4820km52wvax" +path="res://.godot/imported/Bridge_v1.png-aca268bc6ba11aeb8396aed6be91585d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Bridge_v1.png" +dest_files=["res://.godot/imported/Bridge_v1.png-aca268bc6ba11aeb8396aed6be91585d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Bucket_sheet.png b/extracted/Texture2D/Bucket_sheet.png new file mode 100644 index 0000000..4407d0f --- /dev/null +++ b/extracted/Texture2D/Bucket_sheet.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1506b10b79ea0056217cbbefd7f6f023852a56c5ee86e15e26f12333032708e +size 41808 diff --git a/extracted/Texture2D/Bucket_sheet.png.import b/extracted/Texture2D/Bucket_sheet.png.import new file mode 100644 index 0000000..3507978 --- /dev/null +++ b/extracted/Texture2D/Bucket_sheet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1lv63w27u1sa" +path="res://.godot/imported/Bucket_sheet.png-c67ee7727f89d5a56ab2768c64ccef03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Bucket_sheet.png" +dest_files=["res://.godot/imported/Bucket_sheet.png-c67ee7727f89d5a56ab2768c64ccef03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/BushLarge1_Sticker #62693.png b/extracted/Texture2D/BushLarge1_Sticker #62693.png new file mode 100644 index 0000000..5931be2 --- /dev/null +++ b/extracted/Texture2D/BushLarge1_Sticker #62693.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853911398089aedededdc80dd30ae38396faa099e90a5e6aa16fa4b76b6f73a1 +size 61791 diff --git a/extracted/Texture2D/BushLarge1_Sticker #62693.png.import b/extracted/Texture2D/BushLarge1_Sticker #62693.png.import new file mode 100644 index 0000000..fb8c295 --- /dev/null +++ b/extracted/Texture2D/BushLarge1_Sticker #62693.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p0nf4q2snxqr" +path="res://.godot/imported/BushLarge1_Sticker #62693.png-21fbcfca5bd9914f52c8628a93977df8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/BushLarge1_Sticker #62693.png" +dest_files=["res://.godot/imported/BushLarge1_Sticker #62693.png-21fbcfca5bd9914f52c8628a93977df8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Buzo Cloth.png b/extracted/Texture2D/Buzo Cloth.png new file mode 100644 index 0000000..000a412 --- /dev/null +++ b/extracted/Texture2D/Buzo Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30c62399e4919c7a0382a2881fb88cc29a1cb17fc5526752826d49412574a4d +size 147215 diff --git a/extracted/Texture2D/Buzo Cloth.png.import b/extracted/Texture2D/Buzo Cloth.png.import new file mode 100644 index 0000000..c5c05cc --- /dev/null +++ b/extracted/Texture2D/Buzo Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r2jmtr3pr00j" +path="res://.godot/imported/Buzo Cloth.png-8a6d6757050340e71ef5c587593e5839.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Buzo Cloth.png" +dest_files=["res://.godot/imported/Buzo Cloth.png-8a6d6757050340e71ef5c587593e5839.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Buzo Hat Sticker.png b/extracted/Texture2D/Buzo Hat Sticker.png new file mode 100644 index 0000000..fad44b7 --- /dev/null +++ b/extracted/Texture2D/Buzo Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2894c149333e71018ebc0f42a02072d04602db4a044a97221e71bf2d4c491e +size 80363 diff --git a/extracted/Texture2D/Buzo Hat Sticker.png.import b/extracted/Texture2D/Buzo Hat Sticker.png.import new file mode 100644 index 0000000..1e0319c --- /dev/null +++ b/extracted/Texture2D/Buzo Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bksogr60iqtdn" +path="res://.godot/imported/Buzo Hat Sticker.png-7dcf158f5136d80d32f8f79868c092d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Buzo Hat Sticker.png" +dest_files=["res://.godot/imported/Buzo Hat Sticker.png-7dcf158f5136d80d32f8f79868c092d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Buzo cloth Sticker.png b/extracted/Texture2D/Buzo cloth Sticker.png new file mode 100644 index 0000000..d680e44 --- /dev/null +++ b/extracted/Texture2D/Buzo cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58104ff821e81ff94b2735ee5eddd182065d4b4c60eeedda9573ea3362fbf44 +size 44089 diff --git a/extracted/Texture2D/Buzo cloth Sticker.png.import b/extracted/Texture2D/Buzo cloth Sticker.png.import new file mode 100644 index 0000000..91a92ba --- /dev/null +++ b/extracted/Texture2D/Buzo cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cssbhuua1ruef" +path="res://.godot/imported/Buzo cloth Sticker.png-a70f69d9165f87245db6744c3ab80c88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Buzo cloth Sticker.png" +dest_files=["res://.godot/imported/Buzo cloth Sticker.png-a70f69d9165f87245db6744c3ab80c88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Buzo hat.png b/extracted/Texture2D/Buzo hat.png new file mode 100644 index 0000000..847cb63 --- /dev/null +++ b/extracted/Texture2D/Buzo hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369057843167e7a0556dc4ab2ef99755d1a11b2c8446ff0199072fedef776014 +size 338159 diff --git a/extracted/Texture2D/Buzo hat.png.import b/extracted/Texture2D/Buzo hat.png.import new file mode 100644 index 0000000..b762b41 --- /dev/null +++ b/extracted/Texture2D/Buzo hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckm8suchng7aq" +path="res://.godot/imported/Buzo hat.png-e471bb6d62423b772834325ebab15ad8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Buzo hat.png" +dest_files=["res://.godot/imported/Buzo hat.png-e471bb6d62423b772834325ebab15ad8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Casual Cloth Sticker.png b/extracted/Texture2D/Casual Cloth Sticker.png new file mode 100644 index 0000000..90d828e --- /dev/null +++ b/extracted/Texture2D/Casual Cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0aae399e1ad9f37f6391a55d152e56cd79dd8e9956b2e883d0e5f2e847d127 +size 50222 diff --git a/extracted/Texture2D/Casual Cloth Sticker.png.import b/extracted/Texture2D/Casual Cloth Sticker.png.import new file mode 100644 index 0000000..c702090 --- /dev/null +++ b/extracted/Texture2D/Casual Cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oor7kgmctes1" +path="res://.godot/imported/Casual Cloth Sticker.png-3f96a500d976e5924e6c4ab2c92dfb1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Casual Cloth Sticker.png" +dest_files=["res://.godot/imported/Casual Cloth Sticker.png-3f96a500d976e5924e6c4ab2c92dfb1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Child2Sticker.png b/extracted/Texture2D/Child2Sticker.png new file mode 100644 index 0000000..879ecb8 --- /dev/null +++ b/extracted/Texture2D/Child2Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db9ea40c61c588ff2fcac48d6e738080f5df174e99e261f7d283891fdd179fc +size 78281 diff --git a/extracted/Texture2D/Child2Sticker.png.import b/extracted/Texture2D/Child2Sticker.png.import new file mode 100644 index 0000000..5296e4f --- /dev/null +++ b/extracted/Texture2D/Child2Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4rig0rl400e0" +path="res://.godot/imported/Child2Sticker.png-1fa213b30fac1a266919087e5574c9b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Child2Sticker.png" +dest_files=["res://.godot/imported/Child2Sticker.png-1fa213b30fac1a266919087e5574c9b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Construction_Cone.png b/extracted/Texture2D/Construction_Cone.png new file mode 100644 index 0000000..4bc8bf7 --- /dev/null +++ b/extracted/Texture2D/Construction_Cone.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099a237d87ce658ad5f8723b252d18cbc5bc473ec8cd49b442f60505337336e7 +size 16265 diff --git a/extracted/Texture2D/Construction_Cone.png.import b/extracted/Texture2D/Construction_Cone.png.import new file mode 100644 index 0000000..fd42459 --- /dev/null +++ b/extracted/Texture2D/Construction_Cone.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcumexf12ag2m" +path="res://.godot/imported/Construction_Cone.png-fb88cb6641014150442dc5db96ddde64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Construction_Cone.png" +dest_files=["res://.godot/imported/Construction_Cone.png-fb88cb6641014150442dc5db96ddde64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Dog-cat House Sticker.png b/extracted/Texture2D/Dog-cat House Sticker.png new file mode 100644 index 0000000..0ab73f9 --- /dev/null +++ b/extracted/Texture2D/Dog-cat House Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05177e6129062810d1c941d6a175882949632fe18e84309f4d4bfffaafb08096 +size 49802 diff --git a/extracted/Texture2D/Dog-cat House Sticker.png.import b/extracted/Texture2D/Dog-cat House Sticker.png.import new file mode 100644 index 0000000..0ecd76c --- /dev/null +++ b/extracted/Texture2D/Dog-cat House Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://36ov0rt1j57x" +path="res://.godot/imported/Dog-cat House Sticker.png-b1d2a6befd00625b9e5ff4f9cf05d132.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Dog-cat House Sticker.png" +dest_files=["res://.godot/imported/Dog-cat House Sticker.png-b1d2a6befd00625b9e5ff4f9cf05d132.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Dog-cat House.png b/extracted/Texture2D/Dog-cat House.png new file mode 100644 index 0000000..287faad --- /dev/null +++ b/extracted/Texture2D/Dog-cat House.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8122e0eee5f25917c9c2a7bb88dc24ad232cc2da57f255dc8a69892c5330791 +size 44293 diff --git a/extracted/Texture2D/Dog-cat House.png.import b/extracted/Texture2D/Dog-cat House.png.import new file mode 100644 index 0000000..0098eaa --- /dev/null +++ b/extracted/Texture2D/Dog-cat House.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcqoefnovpxrf" +path="res://.godot/imported/Dog-cat House.png-2db5f76047fa56907e1534a2fb5862c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Dog-cat House.png" +dest_files=["res://.godot/imported/Dog-cat House.png-2db5f76047fa56907e1534a2fb5862c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Eagle_outline.png b/extracted/Texture2D/Eagle_outline.png new file mode 100644 index 0000000..9bf5886 --- /dev/null +++ b/extracted/Texture2D/Eagle_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f218124a167af4193300e433c4e435630c3e456781f3cd11fef0a85775ebc87c +size 189218 diff --git a/extracted/Texture2D/Eagle_outline.png.import b/extracted/Texture2D/Eagle_outline.png.import new file mode 100644 index 0000000..fafde15 --- /dev/null +++ b/extracted/Texture2D/Eagle_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dew7oqc4a1urd" +path="res://.godot/imported/Eagle_outline.png-ae835929505099919c509af9e851b232.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Eagle_outline.png" +dest_files=["res://.godot/imported/Eagle_outline.png-ae835929505099919c509af9e851b232.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Elf Cloth.png b/extracted/Texture2D/Elf Cloth.png new file mode 100644 index 0000000..76740e2 --- /dev/null +++ b/extracted/Texture2D/Elf Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e89b31327e60e2cef4ba1404a580384fe2640c4d5503ce89716be0abdc37c4d +size 157342 diff --git a/extracted/Texture2D/Elf Cloth.png.import b/extracted/Texture2D/Elf Cloth.png.import new file mode 100644 index 0000000..9573057 --- /dev/null +++ b/extracted/Texture2D/Elf Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp0g3bgbl5384" +path="res://.godot/imported/Elf Cloth.png-8d5cc2378168147bdcfbd94fbe7c724f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Elf Cloth.png" +dest_files=["res://.godot/imported/Elf Cloth.png-8d5cc2378168147bdcfbd94fbe7c724f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Elf Hat Sticker.png b/extracted/Texture2D/Elf Hat Sticker.png new file mode 100644 index 0000000..c260033 --- /dev/null +++ b/extracted/Texture2D/Elf Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f2bf1e6f3cf55f2fe7ca4df3f0f6fbde84cf0d89a4f4d423e74a895979dbfc +size 46489 diff --git a/extracted/Texture2D/Elf Hat Sticker.png.import b/extracted/Texture2D/Elf Hat Sticker.png.import new file mode 100644 index 0000000..68ced70 --- /dev/null +++ b/extracted/Texture2D/Elf Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxk62uix5nska" +path="res://.godot/imported/Elf Hat Sticker.png-a3c395ef4e3e72c094ce547eaabe88e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Elf Hat Sticker.png" +dest_files=["res://.godot/imported/Elf Hat Sticker.png-a3c395ef4e3e72c094ce547eaabe88e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Elf Hat.png b/extracted/Texture2D/Elf Hat.png new file mode 100644 index 0000000..22b8038 --- /dev/null +++ b/extracted/Texture2D/Elf Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce89a5d46a6a3af9316d5546ffb29e63009eab15b67f8d53f0a3ff2429b78f3a +size 153649 diff --git a/extracted/Texture2D/Elf Hat.png.import b/extracted/Texture2D/Elf Hat.png.import new file mode 100644 index 0000000..dd8ab70 --- /dev/null +++ b/extracted/Texture2D/Elf Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuc23e1qw4b1e" +path="res://.godot/imported/Elf Hat.png-3bb3d3499df287999e753a587ec222bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Elf Hat.png" +dest_files=["res://.godot/imported/Elf Hat.png-3bb3d3499df287999e753a587ec222bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Elf cloth Sticker.png b/extracted/Texture2D/Elf cloth Sticker.png new file mode 100644 index 0000000..8366eee --- /dev/null +++ b/extracted/Texture2D/Elf cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9794df24fad5b4da88518eedd7fd46308531868f514993013de85f87b7b43d03 +size 46248 diff --git a/extracted/Texture2D/Elf cloth Sticker.png.import b/extracted/Texture2D/Elf cloth Sticker.png.import new file mode 100644 index 0000000..11f05cb --- /dev/null +++ b/extracted/Texture2D/Elf cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgkf1o1aliha3" +path="res://.godot/imported/Elf cloth Sticker.png-17074af0948c85c59331ce8eeb45b027.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Elf cloth Sticker.png" +dest_files=["res://.godot/imported/Elf cloth Sticker.png-17074af0948c85c59331ce8eeb45b027.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/EmojiOne.png b/extracted/Texture2D/EmojiOne.png new file mode 100644 index 0000000..c739cb5 --- /dev/null +++ b/extracted/Texture2D/EmojiOne.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8edfad3c0a28aa14485a60b7c6d09920dc17bdeee5816eeac98df10c6d944d40 +size 108168 diff --git a/extracted/Texture2D/EmojiOne.png.import b/extracted/Texture2D/EmojiOne.png.import new file mode 100644 index 0000000..5e01003 --- /dev/null +++ b/extracted/Texture2D/EmojiOne.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diu28fvug8ied" +path="res://.godot/imported/EmojiOne.png-8d0dfbeb2fac053b9dfd5505f5a1cbf1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/EmojiOne.png" +dest_files=["res://.godot/imported/EmojiOne.png-8d0dfbeb2fac053b9dfd5505f5a1cbf1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Exhibition base.png b/extracted/Texture2D/Exhibition base.png new file mode 100644 index 0000000..2628207 --- /dev/null +++ b/extracted/Texture2D/Exhibition base.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea5f5f64861ca179ec68e517fd9ca778ffe2845b50b396cbe024c5086a704c8 +size 25093 diff --git a/extracted/Texture2D/Exhibition base.png.import b/extracted/Texture2D/Exhibition base.png.import new file mode 100644 index 0000000..ff92925 --- /dev/null +++ b/extracted/Texture2D/Exhibition base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvdxjh5k2qlt2" +path="res://.godot/imported/Exhibition base.png-6380e86fdea8a92a850cfc744219740d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Exhibition base.png" +dest_files=["res://.godot/imported/Exhibition base.png-6380e86fdea8a92a850cfc744219740d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Explorer Cloth.png b/extracted/Texture2D/Explorer Cloth.png new file mode 100644 index 0000000..80d8aa0 --- /dev/null +++ b/extracted/Texture2D/Explorer Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac7bbb6e5279d9a5a6d2077539311b4b9331ea2a43d5030a70849d3a2882e1f +size 142411 diff --git a/extracted/Texture2D/Explorer Cloth.png.import b/extracted/Texture2D/Explorer Cloth.png.import new file mode 100644 index 0000000..40b846a --- /dev/null +++ b/extracted/Texture2D/Explorer Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdrrgle88u1n" +path="res://.godot/imported/Explorer Cloth.png-20237ea2a58a5ef5c68cb06fe7edb907.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Explorer Cloth.png" +dest_files=["res://.godot/imported/Explorer Cloth.png-20237ea2a58a5ef5c68cb06fe7edb907.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Expressions.png b/extracted/Texture2D/Expressions.png new file mode 100644 index 0000000..cb118bd --- /dev/null +++ b/extracted/Texture2D/Expressions.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234b223bb699ab613aa8da8f95683c154da7f6715a9051cef59d172ca59dbf3f +size 93268 diff --git a/extracted/Texture2D/Expressions.png.import b/extracted/Texture2D/Expressions.png.import new file mode 100644 index 0000000..d10bebd --- /dev/null +++ b/extracted/Texture2D/Expressions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj16srq1g4wd5" +path="res://.godot/imported/Expressions.png-5a59769f7938107a27e6f4bac6423253.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Expressions.png" +dest_files=["res://.godot/imported/Expressions.png-5a59769f7938107a27e6f4bac6423253.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Fall_sheet_1.png b/extracted/Texture2D/Fall_sheet_1.png new file mode 100644 index 0000000..6a43081 --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f865a0c789f0b44da0f88f54faa0f8fa625c80b6fa1ed55f911466afe050e8 +size 38692 diff --git a/extracted/Texture2D/Fall_sheet_1.png.import b/extracted/Texture2D/Fall_sheet_1.png.import new file mode 100644 index 0000000..656e180 --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dretageqoakuq" +path="res://.godot/imported/Fall_sheet_1.png-4ed9646c19e04006bd83d3bb11ccf1a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Fall_sheet_1.png" +dest_files=["res://.godot/imported/Fall_sheet_1.png-4ed9646c19e04006bd83d3bb11ccf1a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Fall_sheet_2.png b/extracted/Texture2D/Fall_sheet_2.png new file mode 100644 index 0000000..ad7b0bb --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ff6688c83586493f5dab8a7e52541bab1d343949ccba76f2f60d48b7eca823 +size 115804 diff --git a/extracted/Texture2D/Fall_sheet_2.png.import b/extracted/Texture2D/Fall_sheet_2.png.import new file mode 100644 index 0000000..092b2d2 --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt34q2opf2qxt" +path="res://.godot/imported/Fall_sheet_2.png-a9b752f290365b7c3539f1e62914c166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Fall_sheet_2.png" +dest_files=["res://.godot/imported/Fall_sheet_2.png-a9b752f290365b7c3539f1e62914c166.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Fall_sheet_3.png b/extracted/Texture2D/Fall_sheet_3.png new file mode 100644 index 0000000..876fc86 --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98006255be707819059e7d55db273ba4d74c0d703939837738f796301019d7a5 +size 45406 diff --git a/extracted/Texture2D/Fall_sheet_3.png.import b/extracted/Texture2D/Fall_sheet_3.png.import new file mode 100644 index 0000000..1853b56 --- /dev/null +++ b/extracted/Texture2D/Fall_sheet_3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fdtmwdhk6lpw" +path="res://.godot/imported/Fall_sheet_3.png-65e61740557bc12c84996529ddb5ac46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Fall_sheet_3.png" +dest_files=["res://.godot/imported/Fall_sheet_3.png-65e61740557bc12c84996529ddb5ac46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/FireStickers.png b/extracted/Texture2D/FireStickers.png new file mode 100644 index 0000000..954aa19 --- /dev/null +++ b/extracted/Texture2D/FireStickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296cb4bae60dd5338fb7eb611769d00a7243a72773997787ae0817ef0582cd7d +size 60813 diff --git a/extracted/Texture2D/FireStickers.png.import b/extracted/Texture2D/FireStickers.png.import new file mode 100644 index 0000000..da7d0ed --- /dev/null +++ b/extracted/Texture2D/FireStickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xx3dwpwk467v" +path="res://.godot/imported/FireStickers.png-259d039f52ae610545db7b1f9c72e648.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/FireStickers.png" +dest_files=["res://.godot/imported/FireStickers.png-259d039f52ae610545db7b1f9c72e648.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/FishingRodSticker.png b/extracted/Texture2D/FishingRodSticker.png new file mode 100644 index 0000000..fa5ce77 --- /dev/null +++ b/extracted/Texture2D/FishingRodSticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72972b78dc1007e7b4cb23fca7b4e3583bfbd21af2750dd5da609bccca72ce3 +size 60053 diff --git a/extracted/Texture2D/FishingRodSticker.png.import b/extracted/Texture2D/FishingRodSticker.png.import new file mode 100644 index 0000000..021a6fc --- /dev/null +++ b/extracted/Texture2D/FishingRodSticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://calo8ywux20bn" +path="res://.godot/imported/FishingRodSticker.png-392a2eaacd378359ca24b4c6cec24f89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/FishingRodSticker.png" +dest_files=["res://.godot/imported/FishingRodSticker.png-392a2eaacd378359ca24b4c6cec24f89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/FishingRod_Trophy_outline.png b/extracted/Texture2D/FishingRod_Trophy_outline.png new file mode 100644 index 0000000..4dd0c5f --- /dev/null +++ b/extracted/Texture2D/FishingRod_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd503268a6f90dcd20c236c78197cbf9313f43678431fba713b4b4f70db1f961 +size 49905 diff --git a/extracted/Texture2D/FishingRod_Trophy_outline.png.import b/extracted/Texture2D/FishingRod_Trophy_outline.png.import new file mode 100644 index 0000000..9edaa20 --- /dev/null +++ b/extracted/Texture2D/FishingRod_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sakh3xixc6gv" +path="res://.godot/imported/FishingRod_Trophy_outline.png-b311895a79ff5e2b25794fce5ace477a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/FishingRod_Trophy_outline.png" +dest_files=["res://.godot/imported/FishingRod_Trophy_outline.png-b311895a79ff5e2b25794fce5ace477a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/FlagPrirateSticker.png b/extracted/Texture2D/FlagPrirateSticker.png new file mode 100644 index 0000000..1500076 --- /dev/null +++ b/extracted/Texture2D/FlagPrirateSticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5317e15c22716409b0c4cc4cbfbc634717afd8276fbe77f7a876f00287054e41 +size 36601 diff --git a/extracted/Texture2D/FlagPrirateSticker.png.import b/extracted/Texture2D/FlagPrirateSticker.png.import new file mode 100644 index 0000000..3affb81 --- /dev/null +++ b/extracted/Texture2D/FlagPrirateSticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl2alvb7xdo3f" +path="res://.godot/imported/FlagPrirateSticker.png-c4b7b2fd8216d04decd6811f3f629c32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/FlagPrirateSticker.png" +dest_files=["res://.godot/imported/FlagPrirateSticker.png-c4b7b2fd8216d04decd6811f3f629c32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Fountain_Sheet.png b/extracted/Texture2D/Fountain_Sheet.png new file mode 100644 index 0000000..e9323bd --- /dev/null +++ b/extracted/Texture2D/Fountain_Sheet.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2e22407e8951aad797044268eb25e4b85b2a35c12c5cf8d9ca8037aa9d875a +size 294519 diff --git a/extracted/Texture2D/Fountain_Sheet.png.import b/extracted/Texture2D/Fountain_Sheet.png.import new file mode 100644 index 0000000..02c4f81 --- /dev/null +++ b/extracted/Texture2D/Fountain_Sheet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://obkklk3dieuf" +path="res://.godot/imported/Fountain_Sheet.png-dfa56be62a0514581f55963dcd75f144.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Fountain_Sheet.png" +dest_files=["res://.godot/imported/Fountain_Sheet.png-dfa56be62a0514581f55963dcd75f144.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Frame.png b/extracted/Texture2D/Frame.png new file mode 100644 index 0000000..ffe7bb1 --- /dev/null +++ b/extracted/Texture2D/Frame.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8872444f5315b194b94ad5275553adebf90a903789d81458520a1180102978ba +size 49651 diff --git a/extracted/Texture2D/Frame.png.import b/extracted/Texture2D/Frame.png.import new file mode 100644 index 0000000..87b95ae --- /dev/null +++ b/extracted/Texture2D/Frame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmn1kl02gb5xg" +path="res://.godot/imported/Frame.png-326a498ba5d924427d6ceed4b22228ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Frame.png" +dest_files=["res://.godot/imported/Frame.png-326a498ba5d924427d6ceed4b22228ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Gamepad-btns.png b/extracted/Texture2D/Gamepad-btns.png new file mode 100644 index 0000000..3129973 --- /dev/null +++ b/extracted/Texture2D/Gamepad-btns.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d46cee82ac852cbd8ee2b6bb5a53f577eb92ae1e9bc358f0cc75ec2426a9b8f +size 48561 diff --git a/extracted/Texture2D/Gamepad-btns.png.import b/extracted/Texture2D/Gamepad-btns.png.import new file mode 100644 index 0000000..814b4e6 --- /dev/null +++ b/extracted/Texture2D/Gamepad-btns.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btgfxblcrcnot" +path="res://.godot/imported/Gamepad-btns.png-458bb953e68c1f5252db85840b516c98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Gamepad-btns.png" +dest_files=["res://.godot/imported/Gamepad-btns.png-458bb953e68c1f5252db85840b516c98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Ghost_outline.png b/extracted/Texture2D/Ghost_outline.png new file mode 100644 index 0000000..f47bdc1 --- /dev/null +++ b/extracted/Texture2D/Ghost_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017963504766542403df2db19480b241b4155e59b2e243eec74971038998bb65 +size 90625 diff --git a/extracted/Texture2D/Ghost_outline.png.import b/extracted/Texture2D/Ghost_outline.png.import new file mode 100644 index 0000000..72e7503 --- /dev/null +++ b/extracted/Texture2D/Ghost_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crebr10t4x2q6" +path="res://.godot/imported/Ghost_outline.png-7790a7fe59a97f4f669f022bedc16c92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Ghost_outline.png" +dest_files=["res://.godot/imported/Ghost_outline.png-7790a7fe59a97f4f669f022bedc16c92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Glases Hat Sticker.png b/extracted/Texture2D/Glases Hat Sticker.png new file mode 100644 index 0000000..63c0024 --- /dev/null +++ b/extracted/Texture2D/Glases Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8d7290fd4cde9671db0ad19c9d6001a470100791d3652e6a442d4a77ab2129 +size 40316 diff --git a/extracted/Texture2D/Glases Hat Sticker.png.import b/extracted/Texture2D/Glases Hat Sticker.png.import new file mode 100644 index 0000000..22f78ad --- /dev/null +++ b/extracted/Texture2D/Glases Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6csxfb2knwgk" +path="res://.godot/imported/Glases Hat Sticker.png-8b49db3af61b5047ff737c4369324e90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Glases Hat Sticker.png" +dest_files=["res://.godot/imported/Glases Hat Sticker.png-8b49db3af61b5047ff737c4369324e90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Goat_outline.png b/extracted/Texture2D/Goat_outline.png new file mode 100644 index 0000000..13b10e2 --- /dev/null +++ b/extracted/Texture2D/Goat_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0374ef51cecd7cba72fd64c229cf879ef63c1342edc4315964c683b16f4a89d6 +size 167525 diff --git a/extracted/Texture2D/Goat_outline.png.import b/extracted/Texture2D/Goat_outline.png.import new file mode 100644 index 0000000..322b77c --- /dev/null +++ b/extracted/Texture2D/Goat_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtbm2anxd6ksq" +path="res://.godot/imported/Goat_outline.png-335772c33fd5df3d8694c6e333905f4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Goat_outline.png" +dest_files=["res://.godot/imported/Goat_outline.png-335772c33fd5df3d8694c6e333905f4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Googles Hat Sticker.png b/extracted/Texture2D/Googles Hat Sticker.png new file mode 100644 index 0000000..a7fa4fc --- /dev/null +++ b/extracted/Texture2D/Googles Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b93b09a2f8456f3a104d755f6d0e3160ab7680b181255de06e6ecf29e59ca7 +size 47797 diff --git a/extracted/Texture2D/Googles Hat Sticker.png.import b/extracted/Texture2D/Googles Hat Sticker.png.import new file mode 100644 index 0000000..7407b39 --- /dev/null +++ b/extracted/Texture2D/Googles Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://po87vi4fq4fr" +path="res://.godot/imported/Googles Hat Sticker.png-9ab159edeacedc0a12767c354a470b20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Googles Hat Sticker.png" +dest_files=["res://.godot/imported/Googles Hat Sticker.png-9ab159edeacedc0a12767c354a470b20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Googles Hat.png b/extracted/Texture2D/Googles Hat.png new file mode 100644 index 0000000..cf5bb8e --- /dev/null +++ b/extracted/Texture2D/Googles Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a12d2cafac265db2ef8c93b17de8c51eb4c493e55a71c1cf04994ca5909fe6 +size 101248 diff --git a/extracted/Texture2D/Googles Hat.png.import b/extracted/Texture2D/Googles Hat.png.import new file mode 100644 index 0000000..462f2c2 --- /dev/null +++ b/extracted/Texture2D/Googles Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqmh1atu8yk6l" +path="res://.godot/imported/Googles Hat.png-d039ee61b33a69266f7cdf8c462d15f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Googles Hat.png" +dest_files=["res://.godot/imported/Googles Hat.png-d039ee61b33a69266f7cdf8c462d15f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Gradient Diagonal (Color).png b/extracted/Texture2D/Gradient Diagonal (Color).png new file mode 100644 index 0000000..42cb618 --- /dev/null +++ b/extracted/Texture2D/Gradient Diagonal (Color).png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c11a759af3ec4862bb539f25dd5283d5ffbe24747d3c5ce0763a09efe8f3bfb +size 246 diff --git a/extracted/Texture2D/Gradient Diagonal (Color).png.import b/extracted/Texture2D/Gradient Diagonal (Color).png.import new file mode 100644 index 0000000..10660ca --- /dev/null +++ b/extracted/Texture2D/Gradient Diagonal (Color).png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwsopfhlnpalg" +path="res://.godot/imported/Gradient Diagonal (Color).png-b2df5e93612967cf8b67e926439d73eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Gradient Diagonal (Color).png" +dest_files=["res://.godot/imported/Gradient Diagonal (Color).png-b2df5e93612967cf8b67e926439d73eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Haloween wall bats Sticker.png b/extracted/Texture2D/Haloween wall bats Sticker.png new file mode 100644 index 0000000..aef8dee --- /dev/null +++ b/extracted/Texture2D/Haloween wall bats Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258a28c705c8c6d2a6d9f9f7e5e85c53043d062f38ce3298fc792fb6a85a9b89 +size 42867 diff --git a/extracted/Texture2D/Haloween wall bats Sticker.png.import b/extracted/Texture2D/Haloween wall bats Sticker.png.import new file mode 100644 index 0000000..c75f245 --- /dev/null +++ b/extracted/Texture2D/Haloween wall bats Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b578x152bwtyp" +path="res://.godot/imported/Haloween wall bats Sticker.png-0eb920c247f1524228f9f9e09192edb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Haloween wall bats Sticker.png" +dest_files=["res://.godot/imported/Haloween wall bats Sticker.png-0eb920c247f1524228f9f9e09192edb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Hat Glasses.png b/extracted/Texture2D/Hat Glasses.png new file mode 100644 index 0000000..0b7fd9e --- /dev/null +++ b/extracted/Texture2D/Hat Glasses.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531aec20eba5f216db187cd1ac41812cc6100fac48e7e929cf5f11f02cb559b5 +size 103884 diff --git a/extracted/Texture2D/Hat Glasses.png.import b/extracted/Texture2D/Hat Glasses.png.import new file mode 100644 index 0000000..ba4e449 --- /dev/null +++ b/extracted/Texture2D/Hat Glasses.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0m4sejstlmy7" +path="res://.godot/imported/Hat Glasses.png-ac5a705af1f49bb40c1ba6e95c46d32e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Hat Glasses.png" +dest_files=["res://.godot/imported/Hat Glasses.png-ac5a705af1f49bb40c1ba6e95c46d32e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Hermandad Evil Cloth.png b/extracted/Texture2D/Hermandad Evil Cloth.png new file mode 100644 index 0000000..b925734 --- /dev/null +++ b/extracted/Texture2D/Hermandad Evil Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee87c08b3e45f81564cd0f1bf059933ac6a62a237a1d89c2f6fdf8c2ccbef61 +size 148601 diff --git a/extracted/Texture2D/Hermandad Evil Cloth.png.import b/extracted/Texture2D/Hermandad Evil Cloth.png.import new file mode 100644 index 0000000..1487085 --- /dev/null +++ b/extracted/Texture2D/Hermandad Evil Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr147f15k30d0" +path="res://.godot/imported/Hermandad Evil Cloth.png-503425a79db99658e76c9ca32d412829.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Hermandad Evil Cloth.png" +dest_files=["res://.godot/imported/Hermandad Evil Cloth.png-503425a79db99658e76c9ca32d412829.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Hermandad Good Cloth #62486.png b/extracted/Texture2D/Hermandad Good Cloth #62486.png new file mode 100644 index 0000000..d871700 --- /dev/null +++ b/extracted/Texture2D/Hermandad Good Cloth #62486.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc881374d56666d384ab3d6d04e2f3f73b062966cf3a029c60587f564c8ea3a +size 152309 diff --git a/extracted/Texture2D/Hermandad Good Cloth #62486.png.import b/extracted/Texture2D/Hermandad Good Cloth #62486.png.import new file mode 100644 index 0000000..2d5d428 --- /dev/null +++ b/extracted/Texture2D/Hermandad Good Cloth #62486.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b132mr706yrov" +path="res://.godot/imported/Hermandad Good Cloth #62486.png-bcbdaa466e173dcfc2a395c8e435bc16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Hermandad Good Cloth #62486.png" +dest_files=["res://.godot/imported/Hermandad Good Cloth #62486.png-bcbdaa466e173dcfc2a395c8e435bc16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Hermandad Neutro Cloth #62433.png b/extracted/Texture2D/Hermandad Neutro Cloth #62433.png new file mode 100644 index 0000000..0219cc8 --- /dev/null +++ b/extracted/Texture2D/Hermandad Neutro Cloth #62433.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ebf902db46e8bc935aac41cb296979e7a988f8c84cd7facb8c2064ed9fed78 +size 148673 diff --git a/extracted/Texture2D/Hermandad Neutro Cloth #62433.png.import b/extracted/Texture2D/Hermandad Neutro Cloth #62433.png.import new file mode 100644 index 0000000..791a714 --- /dev/null +++ b/extracted/Texture2D/Hermandad Neutro Cloth #62433.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvpx0rlp6rilh" +path="res://.godot/imported/Hermandad Neutro Cloth #62433.png-95a9be60a432a6c7a7b316ee2afbd350.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Hermandad Neutro Cloth #62433.png" +dest_files=["res://.godot/imported/Hermandad Neutro Cloth #62433.png-95a9be60a432a6c7a7b316ee2afbd350.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Hipo_outline.png b/extracted/Texture2D/Hipo_outline.png new file mode 100644 index 0000000..b8f5039 --- /dev/null +++ b/extracted/Texture2D/Hipo_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516dcedeeaff070df6a6d6d9d34d0f8dcad0f3339bac30e5811068aaa80ec6c6 +size 229309 diff --git a/extracted/Texture2D/Hipo_outline.png.import b/extracted/Texture2D/Hipo_outline.png.import new file mode 100644 index 0000000..cad1d73 --- /dev/null +++ b/extracted/Texture2D/Hipo_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byay4kw8ahuyv" +path="res://.godot/imported/Hipo_outline.png-da8f7ebce7eb1717cdc2833dc8b45c9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Hipo_outline.png" +dest_files=["res://.godot/imported/Hipo_outline.png-da8f7ebce7eb1717cdc2833dc8b45c9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Letters_HD.png b/extracted/Texture2D/Letters_HD.png new file mode 100644 index 0000000..539629c --- /dev/null +++ b/extracted/Texture2D/Letters_HD.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493d06dec0b93ab6c370575689901a8111dddd31aa39d7e48105a15187229601 +size 245183 diff --git a/extracted/Texture2D/Letters_HD.png.import b/extracted/Texture2D/Letters_HD.png.import new file mode 100644 index 0000000..abc42e1 --- /dev/null +++ b/extracted/Texture2D/Letters_HD.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqmxvaavooi0" +path="res://.godot/imported/Letters_HD.png-5644ca90cc01b803af948bca9c80b966.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Letters_HD.png" +dest_files=["res://.godot/imported/Letters_HD.png-5644ca90cc01b803af948bca9c80b966.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Love.png b/extracted/Texture2D/Love.png new file mode 100644 index 0000000..eb6b304 --- /dev/null +++ b/extracted/Texture2D/Love.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a83b7749199613b7c9f2c31f81247f6f8568b2047df292da14efcdb2224c38 +size 23844 diff --git a/extracted/Texture2D/Love.png.import b/extracted/Texture2D/Love.png.import new file mode 100644 index 0000000..6fcc05e --- /dev/null +++ b/extracted/Texture2D/Love.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caulvuge3vbqt" +path="res://.godot/imported/Love.png-6fab6bd358bafdb8c16a5153f20df08e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Love.png" +dest_files=["res://.godot/imported/Love.png-6fab6bd358bafdb8c16a5153f20df08e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/MapSticker.png b/extracted/Texture2D/MapSticker.png new file mode 100644 index 0000000..4c6af60 --- /dev/null +++ b/extracted/Texture2D/MapSticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74d5ca5830405f6dede881bab3e0a012949a424743ee1d2bad77aa8571ad0aa +size 60704 diff --git a/extracted/Texture2D/MapSticker.png.import b/extracted/Texture2D/MapSticker.png.import new file mode 100644 index 0000000..4e67afd --- /dev/null +++ b/extracted/Texture2D/MapSticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hewpuqq3na31" +path="res://.godot/imported/MapSticker.png-584bb7ef2fca564001af70b2b08c68cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/MapSticker.png" +dest_files=["res://.godot/imported/MapSticker.png-584bb7ef2fca564001af70b2b08c68cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medal1Stickers.png b/extracted/Texture2D/Medal1Stickers.png new file mode 100644 index 0000000..c88f541 --- /dev/null +++ b/extracted/Texture2D/Medal1Stickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6ce99c30a026b8de84da117cad3aaab286a18fadc5247a2428649e67317ab8 +size 40002 diff --git a/extracted/Texture2D/Medal1Stickers.png.import b/extracted/Texture2D/Medal1Stickers.png.import new file mode 100644 index 0000000..8b3e4f5 --- /dev/null +++ b/extracted/Texture2D/Medal1Stickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nmax4xu4h8wn" +path="res://.godot/imported/Medal1Stickers.png-37253ed93c3217878083dc37290bcea1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medal1Stickers.png" +dest_files=["res://.godot/imported/Medal1Stickers.png-37253ed93c3217878083dc37290bcea1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medal2Stickers.png b/extracted/Texture2D/Medal2Stickers.png new file mode 100644 index 0000000..0076499 --- /dev/null +++ b/extracted/Texture2D/Medal2Stickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36b318cd0067dc9e0d1edd7f100835b4d3b56771ab48a7883e6ecfa23fa4133 +size 45353 diff --git a/extracted/Texture2D/Medal2Stickers.png.import b/extracted/Texture2D/Medal2Stickers.png.import new file mode 100644 index 0000000..13b9b28 --- /dev/null +++ b/extracted/Texture2D/Medal2Stickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdprwiufab608" +path="res://.godot/imported/Medal2Stickers.png-b0eef8326c9bf55b72b9213bba99f1f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medal2Stickers.png" +dest_files=["res://.godot/imported/Medal2Stickers.png-b0eef8326c9bf55b72b9213bba99f1f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medal3tickers.png b/extracted/Texture2D/Medal3tickers.png new file mode 100644 index 0000000..4e1c60a --- /dev/null +++ b/extracted/Texture2D/Medal3tickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafe96a73cf8d1e4c346df9ef3a22a71b711b87bb052ebe0e94dd7a6c09e68b6 +size 38906 diff --git a/extracted/Texture2D/Medal3tickers.png.import b/extracted/Texture2D/Medal3tickers.png.import new file mode 100644 index 0000000..a106851 --- /dev/null +++ b/extracted/Texture2D/Medal3tickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk0bd3sa4pd16" +path="res://.godot/imported/Medal3tickers.png-7f98939f65f797d87d742d940a345916.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medal3tickers.png" +dest_files=["res://.godot/imported/Medal3tickers.png-7f98939f65f797d87d742d940a345916.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medal4Stickers.png b/extracted/Texture2D/Medal4Stickers.png new file mode 100644 index 0000000..58f064b --- /dev/null +++ b/extracted/Texture2D/Medal4Stickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163aef1dc30ce055b88d2f4e68e85dfffab5b6d8e577601873f3d252b7e03ae2 +size 46832 diff --git a/extracted/Texture2D/Medal4Stickers.png.import b/extracted/Texture2D/Medal4Stickers.png.import new file mode 100644 index 0000000..de9ceab --- /dev/null +++ b/extracted/Texture2D/Medal4Stickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1uxxoeio2yaf" +path="res://.godot/imported/Medal4Stickers.png-055bd023ea1bc8f953538acf6f8cccf8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medal4Stickers.png" +dest_files=["res://.godot/imported/Medal4Stickers.png-055bd023ea1bc8f953538acf6f8cccf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medal5tickers.png b/extracted/Texture2D/Medal5tickers.png new file mode 100644 index 0000000..3074d20 --- /dev/null +++ b/extracted/Texture2D/Medal5tickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c40698e1be853bd39a95a91f3c6eca6b1c74786088279c41d47e790208ad0b +size 45991 diff --git a/extracted/Texture2D/Medal5tickers.png.import b/extracted/Texture2D/Medal5tickers.png.import new file mode 100644 index 0000000..3ba353b --- /dev/null +++ b/extracted/Texture2D/Medal5tickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3icxg2s6lfi4" +path="res://.godot/imported/Medal5tickers.png-9dd3afceb3f0aa1f765a5cc45b9e1272.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medal5tickers.png" +dest_files=["res://.godot/imported/Medal5tickers.png-9dd3afceb3f0aa1f765a5cc45b9e1272.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Medals.png b/extracted/Texture2D/Medals.png new file mode 100644 index 0000000..45cc159 --- /dev/null +++ b/extracted/Texture2D/Medals.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3101c3072b10036d4902c94fddf0f7c009a6852bff110f54dbf8509e22ab6f54 +size 140814 diff --git a/extracted/Texture2D/Medals.png.import b/extracted/Texture2D/Medals.png.import new file mode 100644 index 0000000..321c1db --- /dev/null +++ b/extracted/Texture2D/Medals.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://besajw4wbhim5" +path="res://.godot/imported/Medals.png-67b69a7171df37f5d5122eb43027d305.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Medals.png" +dest_files=["res://.godot/imported/Medals.png-67b69a7171df37f5d5122eb43027d305.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Merchant Tent.png b/extracted/Texture2D/Merchant Tent.png new file mode 100644 index 0000000..2813f54 --- /dev/null +++ b/extracted/Texture2D/Merchant Tent.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49647162d1131d2c16c642e4d6592585df7fb0db4e9dc015305f8e570516d972 +size 392982 diff --git a/extracted/Texture2D/Merchant Tent.png.import b/extracted/Texture2D/Merchant Tent.png.import new file mode 100644 index 0000000..cfa6dbf --- /dev/null +++ b/extracted/Texture2D/Merchant Tent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gibwceyrfvl6" +path="res://.godot/imported/Merchant Tent.png-1ee8b5075fad60ed5cd171ab4c2cb064.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Merchant Tent.png" +dest_files=["res://.godot/imported/Merchant Tent.png-1ee8b5075fad60ed5cd171ab4c2cb064.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Modified_Water_Assets.png b/extracted/Texture2D/Modified_Water_Assets.png new file mode 100644 index 0000000..5a58f87 --- /dev/null +++ b/extracted/Texture2D/Modified_Water_Assets.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3464aaa58736adf6cbdf960c7e7a09999bbb0556dd0851657f8d225bbc09e1 +size 198782 diff --git a/extracted/Texture2D/Modified_Water_Assets.png.import b/extracted/Texture2D/Modified_Water_Assets.png.import new file mode 100644 index 0000000..e443ade --- /dev/null +++ b/extracted/Texture2D/Modified_Water_Assets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnbj7mt4w8uwo" +path="res://.godot/imported/Modified_Water_Assets.png-bdbecb67ac3c464745d04e57f21c261c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Modified_Water_Assets.png" +dest_files=["res://.godot/imported/Modified_Water_Assets.png-bdbecb67ac3c464745d04e57f21c261c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/MouseLTrigger.png b/extracted/Texture2D/MouseLTrigger.png new file mode 100644 index 0000000..bd58035 --- /dev/null +++ b/extracted/Texture2D/MouseLTrigger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d74874207d67e08322f909ca1caca54df67b56ff3632139d5c099ac03aa816a +size 15264 diff --git a/extracted/Texture2D/MouseLTrigger.png.import b/extracted/Texture2D/MouseLTrigger.png.import new file mode 100644 index 0000000..bdc5c60 --- /dev/null +++ b/extracted/Texture2D/MouseLTrigger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxj1skn8ely4y" +path="res://.godot/imported/MouseLTrigger.png-de439d27ffdbe66ede5d5109a7d687f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/MouseLTrigger.png" +dest_files=["res://.godot/imported/MouseLTrigger.png-de439d27ffdbe66ede5d5109a7d687f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/MusicianSticker2.png b/extracted/Texture2D/MusicianSticker2.png new file mode 100644 index 0000000..1c7f8b8 --- /dev/null +++ b/extracted/Texture2D/MusicianSticker2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d96fd12316df166168031a72558be32e4b8eea044437544236d55ffc532b405 +size 72695 diff --git a/extracted/Texture2D/MusicianSticker2.png.import b/extracted/Texture2D/MusicianSticker2.png.import new file mode 100644 index 0000000..76b2595 --- /dev/null +++ b/extracted/Texture2D/MusicianSticker2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lphv8p77wmbv" +path="res://.godot/imported/MusicianSticker2.png-9ee0b01d8322dd45bf1a7707061c0e26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/MusicianSticker2.png" +dest_files=["res://.godot/imported/MusicianSticker2.png-9ee0b01d8322dd45bf1a7707061c0e26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/No-Hat-Sticker #62837.png b/extracted/Texture2D/No-Hat-Sticker #62837.png new file mode 100644 index 0000000..2ab4466 --- /dev/null +++ b/extracted/Texture2D/No-Hat-Sticker #62837.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336091fab385298fc16f8a5099983a408b12036b5edc40eaa855a05806ce939d +size 52379 diff --git a/extracted/Texture2D/No-Hat-Sticker #62837.png.import b/extracted/Texture2D/No-Hat-Sticker #62837.png.import new file mode 100644 index 0000000..076385b --- /dev/null +++ b/extracted/Texture2D/No-Hat-Sticker #62837.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwwhyjlsywmv4" +path="res://.godot/imported/No-Hat-Sticker #62837.png-e2b67b48bebb3decf2bff1f9795a365d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/No-Hat-Sticker #62837.png" +dest_files=["res://.godot/imported/No-Hat-Sticker #62837.png-e2b67b48bebb3decf2bff1f9795a365d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/No-Hat-Sticker.png b/extracted/Texture2D/No-Hat-Sticker.png new file mode 100644 index 0000000..2ab4466 --- /dev/null +++ b/extracted/Texture2D/No-Hat-Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336091fab385298fc16f8a5099983a408b12036b5edc40eaa855a05806ce939d +size 52379 diff --git a/extracted/Texture2D/No-Hat-Sticker.png.import b/extracted/Texture2D/No-Hat-Sticker.png.import new file mode 100644 index 0000000..51797d2 --- /dev/null +++ b/extracted/Texture2D/No-Hat-Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwpt6wkkh0miu" +path="res://.godot/imported/No-Hat-Sticker.png-8f2b932296ff0125a17a5bd7cfe0d16e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/No-Hat-Sticker.png" +dest_files=["res://.godot/imported/No-Hat-Sticker.png-8f2b932296ff0125a17a5bd7cfe0d16e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Owl2_outline.png b/extracted/Texture2D/Owl2_outline.png new file mode 100644 index 0000000..d017cdc --- /dev/null +++ b/extracted/Texture2D/Owl2_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0071634288bc99107194dd41d97311a3663406bf93df2735f1800a9a97fd55a +size 170113 diff --git a/extracted/Texture2D/Owl2_outline.png.import b/extracted/Texture2D/Owl2_outline.png.import new file mode 100644 index 0000000..1d5f44c --- /dev/null +++ b/extracted/Texture2D/Owl2_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuysik04f0fr3" +path="res://.godot/imported/Owl2_outline.png-83151566ab544119d502d1770aab3617.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Owl2_outline.png" +dest_files=["res://.godot/imported/Owl2_outline.png-83151566ab544119d502d1770aab3617.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Owl_outline.png b/extracted/Texture2D/Owl_outline.png new file mode 100644 index 0000000..8489de4 --- /dev/null +++ b/extracted/Texture2D/Owl_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b02c5444b8126f126f1266d8006f1367d7ba316bf7664248b60b47cedc57aa9 +size 169880 diff --git a/extracted/Texture2D/Owl_outline.png.import b/extracted/Texture2D/Owl_outline.png.import new file mode 100644 index 0000000..c77c54e --- /dev/null +++ b/extracted/Texture2D/Owl_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crmnx3evhvkum" +path="res://.godot/imported/Owl_outline.png-254fe9db858348e6dabac8124d10ec86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Owl_outline.png" +dest_files=["res://.godot/imported/Owl_outline.png-254fe9db858348e6dabac8124d10ec86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Palm_Beach_04_SPRT.png b/extracted/Texture2D/Palm_Beach_04_SPRT.png new file mode 100644 index 0000000..42527f8 --- /dev/null +++ b/extracted/Texture2D/Palm_Beach_04_SPRT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b50ffa088ad026cba0f7ecbafbacc99b676a8a7577491c20c1828f3a3523672 +size 75517 diff --git a/extracted/Texture2D/Palm_Beach_04_SPRT.png.import b/extracted/Texture2D/Palm_Beach_04_SPRT.png.import new file mode 100644 index 0000000..237853f --- /dev/null +++ b/extracted/Texture2D/Palm_Beach_04_SPRT.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csjc1ikv7qb4j" +path="res://.godot/imported/Palm_Beach_04_SPRT.png-0cbeb3a2844abee1bb2fb316731d6a92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Palm_Beach_04_SPRT.png" +dest_files=["res://.godot/imported/Palm_Beach_04_SPRT.png-0cbeb3a2844abee1bb2fb316731d6a92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/PickaAxe_Steel.png b/extracted/Texture2D/PickaAxe_Steel.png new file mode 100644 index 0000000..04bb142 --- /dev/null +++ b/extracted/Texture2D/PickaAxe_Steel.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367241ec0419167860b7e1cebde1ec936960237930b8999955a5c6591f24fd4f +size 17843 diff --git a/extracted/Texture2D/PickaAxe_Steel.png.import b/extracted/Texture2D/PickaAxe_Steel.png.import new file mode 100644 index 0000000..f75cd1d --- /dev/null +++ b/extracted/Texture2D/PickaAxe_Steel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8wwda5k1bhmf" +path="res://.godot/imported/PickaAxe_Steel.png-1da49331b87d3222bc6fb159a60be84c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/PickaAxe_Steel.png" +dest_files=["res://.godot/imported/PickaAxe_Steel.png-1da49331b87d3222bc6fb159a60be84c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pinguino_outline.png b/extracted/Texture2D/Pinguino_outline.png new file mode 100644 index 0000000..6585d02 --- /dev/null +++ b/extracted/Texture2D/Pinguino_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ea403aff28d79f2f35d56f22e199fd5925e04e802a78776df72cb50262dfc8 +size 143788 diff --git a/extracted/Texture2D/Pinguino_outline.png.import b/extracted/Texture2D/Pinguino_outline.png.import new file mode 100644 index 0000000..abf7371 --- /dev/null +++ b/extracted/Texture2D/Pinguino_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i2vopolqi6vg" +path="res://.godot/imported/Pinguino_outline.png-f326627f951d855c987fd4e2ca18c04f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pinguino_outline.png" +dest_files=["res://.godot/imported/Pinguino_outline.png-f326627f951d855c987fd4e2ca18c04f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pirate Cloth #62996.png b/extracted/Texture2D/Pirate Cloth #62996.png new file mode 100644 index 0000000..542735a --- /dev/null +++ b/extracted/Texture2D/Pirate Cloth #62996.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfb9ad2addada14f3c6b27660a1b5140bfe5f1215db772778a039b07bdada6f +size 164263 diff --git a/extracted/Texture2D/Pirate Cloth #62996.png.import b/extracted/Texture2D/Pirate Cloth #62996.png.import new file mode 100644 index 0000000..095f81a --- /dev/null +++ b/extracted/Texture2D/Pirate Cloth #62996.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpae88osperkm" +path="res://.godot/imported/Pirate Cloth #62996.png-80356af6e31af0dd5dcdc2cdb3b99cee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pirate Cloth #62996.png" +dest_files=["res://.godot/imported/Pirate Cloth #62996.png-80356af6e31af0dd5dcdc2cdb3b99cee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pirate Cloth.png b/extracted/Texture2D/Pirate Cloth.png new file mode 100644 index 0000000..542735a --- /dev/null +++ b/extracted/Texture2D/Pirate Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfb9ad2addada14f3c6b27660a1b5140bfe5f1215db772778a039b07bdada6f +size 164263 diff --git a/extracted/Texture2D/Pirate Cloth.png.import b/extracted/Texture2D/Pirate Cloth.png.import new file mode 100644 index 0000000..e04f414 --- /dev/null +++ b/extracted/Texture2D/Pirate Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b755bou5p8o20" +path="res://.godot/imported/Pirate Cloth.png-b00c09db4bf2d68c7bd13b6c4d036521.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pirate Cloth.png" +dest_files=["res://.godot/imported/Pirate Cloth.png-b00c09db4bf2d68c7bd13b6c4d036521.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pirate Hat Sticker #62555.png b/extracted/Texture2D/Pirate Hat Sticker #62555.png new file mode 100644 index 0000000..0e16c8b --- /dev/null +++ b/extracted/Texture2D/Pirate Hat Sticker #62555.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6610b41d8f55fae7c3d858b458220fcf93b1b370bb50ab92cdd8512952fa0c +size 59114 diff --git a/extracted/Texture2D/Pirate Hat Sticker #62555.png.import b/extracted/Texture2D/Pirate Hat Sticker #62555.png.import new file mode 100644 index 0000000..eb6c1a0 --- /dev/null +++ b/extracted/Texture2D/Pirate Hat Sticker #62555.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvm64fuhwm4b2" +path="res://.godot/imported/Pirate Hat Sticker #62555.png-89b876e02fa1090879ea0372518b4a22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pirate Hat Sticker #62555.png" +dest_files=["res://.godot/imported/Pirate Hat Sticker #62555.png-89b876e02fa1090879ea0372518b4a22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pirate Hat Sticker.png b/extracted/Texture2D/Pirate Hat Sticker.png new file mode 100644 index 0000000..0e16c8b --- /dev/null +++ b/extracted/Texture2D/Pirate Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6610b41d8f55fae7c3d858b458220fcf93b1b370bb50ab92cdd8512952fa0c +size 59114 diff --git a/extracted/Texture2D/Pirate Hat Sticker.png.import b/extracted/Texture2D/Pirate Hat Sticker.png.import new file mode 100644 index 0000000..3bed32d --- /dev/null +++ b/extracted/Texture2D/Pirate Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://675hk50w204q" +path="res://.godot/imported/Pirate Hat Sticker.png-8ba63da1a69d3898019f0ed99216efae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pirate Hat Sticker.png" +dest_files=["res://.godot/imported/Pirate Hat Sticker.png-8ba63da1a69d3898019f0ed99216efae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Pirate cloth Sticker.png b/extracted/Texture2D/Pirate cloth Sticker.png new file mode 100644 index 0000000..5ff78d4 --- /dev/null +++ b/extracted/Texture2D/Pirate cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af502403fc8ef261892b9ca0d5159e1f544cdef010a78ff2103cd1d464dd4366 +size 49589 diff --git a/extracted/Texture2D/Pirate cloth Sticker.png.import b/extracted/Texture2D/Pirate cloth Sticker.png.import new file mode 100644 index 0000000..3c24e4b --- /dev/null +++ b/extracted/Texture2D/Pirate cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c72thgycxktww" +path="res://.godot/imported/Pirate cloth Sticker.png-ef128660004c7a245e013041aff5b8c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Pirate cloth Sticker.png" +dest_files=["res://.godot/imported/Pirate cloth Sticker.png-ef128660004c7a245e013041aff5b8c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/PirateHat.png b/extracted/Texture2D/PirateHat.png new file mode 100644 index 0000000..ecb2e2c --- /dev/null +++ b/extracted/Texture2D/PirateHat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2977c3b852a4b3d871589c77d2c52a01b15cf336533fae66c4c1ba478c63635d +size 199618 diff --git a/extracted/Texture2D/PirateHat.png.import b/extracted/Texture2D/PirateHat.png.import new file mode 100644 index 0000000..be30cb4 --- /dev/null +++ b/extracted/Texture2D/PirateHat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b25o2jodhouis" +path="res://.godot/imported/PirateHat.png-ae1fe0928601a436037e280a4dccd275.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/PirateHat.png" +dest_files=["res://.godot/imported/PirateHat.png-ae1fe0928601a436037e280a4dccd275.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/PirateSticker.png b/extracted/Texture2D/PirateSticker.png new file mode 100644 index 0000000..639c17c --- /dev/null +++ b/extracted/Texture2D/PirateSticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71481991b74607c6f31ddc1bda42c7c01db3bf2b967012ba5b7517a553e803c1 +size 88261 diff --git a/extracted/Texture2D/PirateSticker.png.import b/extracted/Texture2D/PirateSticker.png.import new file mode 100644 index 0000000..06fb607 --- /dev/null +++ b/extracted/Texture2D/PirateSticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w878eu31ba1d" +path="res://.godot/imported/PirateSticker.png-e4d692062acec2ba220667b3c11b15c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/PirateSticker.png" +dest_files=["res://.godot/imported/PirateSticker.png-e4d692062acec2ba220667b3c11b15c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/PlaceDog.png b/extracted/Texture2D/PlaceDog.png new file mode 100644 index 0000000..041c510 --- /dev/null +++ b/extracted/Texture2D/PlaceDog.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f603b64257252725e87f954fdec1c03edd5621fdb2b7599af17ea3c32a5c3c +size 25288 diff --git a/extracted/Texture2D/PlaceDog.png.import b/extracted/Texture2D/PlaceDog.png.import new file mode 100644 index 0000000..22c05d9 --- /dev/null +++ b/extracted/Texture2D/PlaceDog.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6lfqyata3mil" +path="res://.godot/imported/PlaceDog.png-34891677b3fc2057f7c02d5d8c4b2530.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/PlaceDog.png" +dest_files=["res://.godot/imported/PlaceDog.png-34891677b3fc2057f7c02d5d8c4b2530.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/PlaceStairs.png b/extracted/Texture2D/PlaceStairs.png new file mode 100644 index 0000000..2185115 --- /dev/null +++ b/extracted/Texture2D/PlaceStairs.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2b8fa38d4c4b7e96d6f1e94dd2681c758e67f1f3c863f5aafa13a3808cd528 +size 14864 diff --git a/extracted/Texture2D/PlaceStairs.png.import b/extracted/Texture2D/PlaceStairs.png.import new file mode 100644 index 0000000..d3567f8 --- /dev/null +++ b/extracted/Texture2D/PlaceStairs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5px01b74jq62" +path="res://.godot/imported/PlaceStairs.png-afe164d359316bb95b6a612952633356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/PlaceStairs.png" +dest_files=["res://.godot/imported/PlaceStairs.png-afe164d359316bb95b6a612952633356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Quest items.png b/extracted/Texture2D/Quest items.png new file mode 100644 index 0000000..eac8cf0 --- /dev/null +++ b/extracted/Texture2D/Quest items.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af14a959f3fc470423e5894365cc37c06ac430f9e19f7bb059421bcfd9d9c17 +size 311700 diff --git a/extracted/Texture2D/Quest items.png.import b/extracted/Texture2D/Quest items.png.import new file mode 100644 index 0000000..0a8e5cb --- /dev/null +++ b/extracted/Texture2D/Quest items.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw13nhm6scmsc" +path="res://.godot/imported/Quest items.png-ac11054744ef4dbdf4947cce92c72f70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Quest items.png" +dest_files=["res://.godot/imported/Quest items.png-ac11054744ef4dbdf4947cce92c72f70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/QuestItemsOutlines.png b/extracted/Texture2D/QuestItemsOutlines.png new file mode 100644 index 0000000..3da7a86 --- /dev/null +++ b/extracted/Texture2D/QuestItemsOutlines.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c47ce8f6c1dc8e8feaacf7ebfa53374e2614071e7986b15a0e725922d5d1d62 +size 188677 diff --git a/extracted/Texture2D/QuestItemsOutlines.png.import b/extracted/Texture2D/QuestItemsOutlines.png.import new file mode 100644 index 0000000..77bc612 --- /dev/null +++ b/extracted/Texture2D/QuestItemsOutlines.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be620vamokqca" +path="res://.godot/imported/QuestItemsOutlines.png-f721c437f76b73ad42b6c312a2db3847.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/QuestItemsOutlines.png" +dest_files=["res://.godot/imported/QuestItemsOutlines.png-f721c437f76b73ad42b6c312a2db3847.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Racoon_Trophy_outline.png b/extracted/Texture2D/Racoon_Trophy_outline.png new file mode 100644 index 0000000..9544492 --- /dev/null +++ b/extracted/Texture2D/Racoon_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8f78242c71b7f94b264281a2d8b3afa3e8bc52fb9405ab11a1066cb51c013a +size 77201 diff --git a/extracted/Texture2D/Racoon_Trophy_outline.png.import b/extracted/Texture2D/Racoon_Trophy_outline.png.import new file mode 100644 index 0000000..29d77c0 --- /dev/null +++ b/extracted/Texture2D/Racoon_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baefb1dy5v7tu" +path="res://.godot/imported/Racoon_Trophy_outline.png-72165080698e8515e0c5ed8b4a275da5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Racoon_Trophy_outline.png" +dest_files=["res://.godot/imported/Racoon_Trophy_outline.png-72165080698e8515e0c5ed8b4a275da5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Ribbon Hat Sticker #62615.png b/extracted/Texture2D/Ribbon Hat Sticker #62615.png new file mode 100644 index 0000000..5523fbc --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat Sticker #62615.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a39d16b0eef9719653ae8d7a4d900139277d2c7ba1b8018d2dac0723650f43b +size 45743 diff --git a/extracted/Texture2D/Ribbon Hat Sticker #62615.png.import b/extracted/Texture2D/Ribbon Hat Sticker #62615.png.import new file mode 100644 index 0000000..007be3a --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat Sticker #62615.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm8dtscr52hh0" +path="res://.godot/imported/Ribbon Hat Sticker #62615.png-8ef82f8d7c6e69040cecbbaadfb95f87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Ribbon Hat Sticker #62615.png" +dest_files=["res://.godot/imported/Ribbon Hat Sticker #62615.png-8ef82f8d7c6e69040cecbbaadfb95f87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Ribbon Hat Sticker.png b/extracted/Texture2D/Ribbon Hat Sticker.png new file mode 100644 index 0000000..5523fbc --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a39d16b0eef9719653ae8d7a4d900139277d2c7ba1b8018d2dac0723650f43b +size 45743 diff --git a/extracted/Texture2D/Ribbon Hat Sticker.png.import b/extracted/Texture2D/Ribbon Hat Sticker.png.import new file mode 100644 index 0000000..13881b7 --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1djjv1xm3vcl" +path="res://.godot/imported/Ribbon Hat Sticker.png-3f122ef4a0609a696c629f15ae49c600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Ribbon Hat Sticker.png" +dest_files=["res://.godot/imported/Ribbon Hat Sticker.png-3f122ef4a0609a696c629f15ae49c600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Ribbon Hat.png b/extracted/Texture2D/Ribbon Hat.png new file mode 100644 index 0000000..7f39d58 --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877eb0c066309cb7ae576f0b1557fd7c0c394b926ee8119fd4501c956387ed14 +size 90330 diff --git a/extracted/Texture2D/Ribbon Hat.png.import b/extracted/Texture2D/Ribbon Hat.png.import new file mode 100644 index 0000000..cdc4256 --- /dev/null +++ b/extracted/Texture2D/Ribbon Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt7uvigsshdg7" +path="res://.godot/imported/Ribbon Hat.png-c9c077a3e9ebab4de2ff14d4d46b0798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Ribbon Hat.png" +dest_files=["res://.godot/imported/Ribbon Hat.png-c9c077a3e9ebab4de2ff14d4d46b0798.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/SPRT_Hand.png b/extracted/Texture2D/SPRT_Hand.png new file mode 100644 index 0000000..0ee7452 --- /dev/null +++ b/extracted/Texture2D/SPRT_Hand.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67e08020f95b3056957992a7c6cfdac9c74096e78f7c6e3d7efab357198ccdb +size 74722 diff --git a/extracted/Texture2D/SPRT_Hand.png.import b/extracted/Texture2D/SPRT_Hand.png.import new file mode 100644 index 0000000..8930e26 --- /dev/null +++ b/extracted/Texture2D/SPRT_Hand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://docoki1q4vvfh" +path="res://.godot/imported/SPRT_Hand.png-10f10cc13ae4b0331523734719309ebe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/SPRT_Hand.png" +dest_files=["res://.godot/imported/SPRT_Hand.png-10f10cc13ae4b0331523734719309ebe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/ST_BG_Pattrn_day.png b/extracted/Texture2D/ST_BG_Pattrn_day.png new file mode 100644 index 0000000..dfb760a --- /dev/null +++ b/extracted/Texture2D/ST_BG_Pattrn_day.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dddc86a2fe383e4d3237d6da5de29eb6aeb14c289c6d6d883759b8ce55dca0 +size 2596 diff --git a/extracted/Texture2D/ST_BG_Pattrn_day.png.import b/extracted/Texture2D/ST_BG_Pattrn_day.png.import new file mode 100644 index 0000000..8e30619 --- /dev/null +++ b/extracted/Texture2D/ST_BG_Pattrn_day.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b00mrv38aytdv" +path="res://.godot/imported/ST_BG_Pattrn_day.png-9c1dc4f75ed8c10e00ed5d8898fb589a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/ST_BG_Pattrn_day.png" +dest_files=["res://.godot/imported/ST_BG_Pattrn_day.png-9c1dc4f75ed8c10e00ed5d8898fb589a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Sant Hat Sticker.png b/extracted/Texture2D/Sant Hat Sticker.png new file mode 100644 index 0000000..229e52c --- /dev/null +++ b/extracted/Texture2D/Sant Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d25f61398ac5691492e6d4f5bc47e100a510b04ab8416ba930499dc257cfd33 +size 48556 diff --git a/extracted/Texture2D/Sant Hat Sticker.png.import b/extracted/Texture2D/Sant Hat Sticker.png.import new file mode 100644 index 0000000..7c13930 --- /dev/null +++ b/extracted/Texture2D/Sant Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh3bvua5ys878" +path="res://.godot/imported/Sant Hat Sticker.png-e295d973c2580c6a9db4fc6f6a10e24e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Sant Hat Sticker.png" +dest_files=["res://.godot/imported/Sant Hat Sticker.png-e295d973c2580c6a9db4fc6f6a10e24e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Sant cloth Sticker.png b/extracted/Texture2D/Sant cloth Sticker.png new file mode 100644 index 0000000..1d4bcb9 --- /dev/null +++ b/extracted/Texture2D/Sant cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c2c11c4342878a03f2322d0c69d383010a5c8f8db7f4ed8e72d05b82718fea +size 48551 diff --git a/extracted/Texture2D/Sant cloth Sticker.png.import b/extracted/Texture2D/Sant cloth Sticker.png.import new file mode 100644 index 0000000..e405457 --- /dev/null +++ b/extracted/Texture2D/Sant cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyi4tyns7tfi" +path="res://.godot/imported/Sant cloth Sticker.png-9781c135edee323dab0d825b20ef3bc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Sant cloth Sticker.png" +dest_files=["res://.godot/imported/Sant cloth Sticker.png-9781c135edee323dab0d825b20ef3bc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Santa Cloth #62945.png b/extracted/Texture2D/Santa Cloth #62945.png new file mode 100644 index 0000000..d673602 --- /dev/null +++ b/extracted/Texture2D/Santa Cloth #62945.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ee81192dfdf0a91fb30a4488b88951962e1a5f7990896af32f68b7b643e17b +size 151420 diff --git a/extracted/Texture2D/Santa Cloth #62945.png.import b/extracted/Texture2D/Santa Cloth #62945.png.import new file mode 100644 index 0000000..6739fc1 --- /dev/null +++ b/extracted/Texture2D/Santa Cloth #62945.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6vfogagiejx6" +path="res://.godot/imported/Santa Cloth #62945.png-22f3c06f9ccf1e5433d02447005fb49e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Santa Cloth #62945.png" +dest_files=["res://.godot/imported/Santa Cloth #62945.png-22f3c06f9ccf1e5433d02447005fb49e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Santa Cloth.png b/extracted/Texture2D/Santa Cloth.png new file mode 100644 index 0000000..d673602 --- /dev/null +++ b/extracted/Texture2D/Santa Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ee81192dfdf0a91fb30a4488b88951962e1a5f7990896af32f68b7b643e17b +size 151420 diff --git a/extracted/Texture2D/Santa Cloth.png.import b/extracted/Texture2D/Santa Cloth.png.import new file mode 100644 index 0000000..3d422df --- /dev/null +++ b/extracted/Texture2D/Santa Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dovybmk3qnj81" +path="res://.godot/imported/Santa Cloth.png-6f226490b22c63764069c9573368bd01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Santa Cloth.png" +dest_files=["res://.godot/imported/Santa Cloth.png-6f226490b22c63764069c9573368bd01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Santa Hat.png b/extracted/Texture2D/Santa Hat.png new file mode 100644 index 0000000..310f024 --- /dev/null +++ b/extracted/Texture2D/Santa Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6eb4a82060d3a8c2a2a5136c68fd2525df17b18274cb7afa883ea674a2fa95c +size 185212 diff --git a/extracted/Texture2D/Santa Hat.png.import b/extracted/Texture2D/Santa Hat.png.import new file mode 100644 index 0000000..cf46a9a --- /dev/null +++ b/extracted/Texture2D/Santa Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd1l7q43we5io" +path="res://.godot/imported/Santa Hat.png-1c84bfdcb3cae274fa31618da26d555b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Santa Hat.png" +dest_files=["res://.godot/imported/Santa Hat.png-1c84bfdcb3cae274fa31618da26d555b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/SawStickers.png b/extracted/Texture2D/SawStickers.png new file mode 100644 index 0000000..8f7f10b --- /dev/null +++ b/extracted/Texture2D/SawStickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b917fa0ba0b0f8d83525b875ad95a0c966a303044b34e50cd28c1bc7d8e2a997 +size 44666 diff --git a/extracted/Texture2D/SawStickers.png.import b/extracted/Texture2D/SawStickers.png.import new file mode 100644 index 0000000..39296ea --- /dev/null +++ b/extracted/Texture2D/SawStickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsx481mtol0dd" +path="res://.godot/imported/SawStickers.png-133e96bc441dde539d7d1392eda77774.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/SawStickers.png" +dest_files=["res://.godot/imported/SawStickers.png-133e96bc441dde539d7d1392eda77774.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Scaled Apple.png b/extracted/Texture2D/Scaled Apple.png new file mode 100644 index 0000000..89f0d29 --- /dev/null +++ b/extracted/Texture2D/Scaled Apple.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b2ed8d6bded9258b2cdf8cb2106943b6e6dfc7715d3054a1ddcb9e828dd2e8 +size 30768 diff --git a/extracted/Texture2D/Scaled Apple.png.import b/extracted/Texture2D/Scaled Apple.png.import new file mode 100644 index 0000000..1557d11 --- /dev/null +++ b/extracted/Texture2D/Scaled Apple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dju6tx56xku7d" +path="res://.godot/imported/Scaled Apple.png-be0af95154c470e228ec8fada6fcfbf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Scaled Apple.png" +dest_files=["res://.godot/imported/Scaled Apple.png-be0af95154c470e228ec8fada6fcfbf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Scout cloth Sticker #62937.png b/extracted/Texture2D/Scout cloth Sticker #62937.png new file mode 100644 index 0000000..91f69fe --- /dev/null +++ b/extracted/Texture2D/Scout cloth Sticker #62937.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304f94a99f7f196b6951df3ad1d227249b23a28ed12a317630abdda04df0866a +size 49436 diff --git a/extracted/Texture2D/Scout cloth Sticker #62937.png.import b/extracted/Texture2D/Scout cloth Sticker #62937.png.import new file mode 100644 index 0000000..c55e0d6 --- /dev/null +++ b/extracted/Texture2D/Scout cloth Sticker #62937.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g56sjhaotlx" +path="res://.godot/imported/Scout cloth Sticker #62937.png-2038809e086343d8b5eeb5ba8f5daf2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Scout cloth Sticker #62937.png" +dest_files=["res://.godot/imported/Scout cloth Sticker #62937.png-2038809e086343d8b5eeb5ba8f5daf2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Scout cloth Sticker.png b/extracted/Texture2D/Scout cloth Sticker.png new file mode 100644 index 0000000..91f69fe --- /dev/null +++ b/extracted/Texture2D/Scout cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:304f94a99f7f196b6951df3ad1d227249b23a28ed12a317630abdda04df0866a +size 49436 diff --git a/extracted/Texture2D/Scout cloth Sticker.png.import b/extracted/Texture2D/Scout cloth Sticker.png.import new file mode 100644 index 0000000..c27f401 --- /dev/null +++ b/extracted/Texture2D/Scout cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csy1bq3s8dvw" +path="res://.godot/imported/Scout cloth Sticker.png-e0105ac26663943807e6cfbe707f13a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Scout cloth Sticker.png" +dest_files=["res://.godot/imported/Scout cloth Sticker.png-e0105ac26663943807e6cfbe707f13a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Scroll1Stickers.png b/extracted/Texture2D/Scroll1Stickers.png new file mode 100644 index 0000000..c02cc0d --- /dev/null +++ b/extracted/Texture2D/Scroll1Stickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96cd66b9479b301de07701df6d19ab298bc5d7b55de0a829fb1d925b5de9d9c +size 57118 diff --git a/extracted/Texture2D/Scroll1Stickers.png.import b/extracted/Texture2D/Scroll1Stickers.png.import new file mode 100644 index 0000000..eb59069 --- /dev/null +++ b/extracted/Texture2D/Scroll1Stickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvyiywjcxjok7" +path="res://.godot/imported/Scroll1Stickers.png-84f439baa667c28778cd79cc7930e107.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Scroll1Stickers.png" +dest_files=["res://.godot/imported/Scroll1Stickers.png-84f439baa667c28778cd79cc7930e107.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/SimpleParticles_All_01_SPRT.png b/extracted/Texture2D/SimpleParticles_All_01_SPRT.png new file mode 100644 index 0000000..a205838 --- /dev/null +++ b/extracted/Texture2D/SimpleParticles_All_01_SPRT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a9e5d2d8b85246b8a04dbd788fed8b76a326c813652146aff22683cf8bcc6b +size 17611 diff --git a/extracted/Texture2D/SimpleParticles_All_01_SPRT.png.import b/extracted/Texture2D/SimpleParticles_All_01_SPRT.png.import new file mode 100644 index 0000000..75cee68 --- /dev/null +++ b/extracted/Texture2D/SimpleParticles_All_01_SPRT.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciyh3rnoo4uk" +path="res://.godot/imported/SimpleParticles_All_01_SPRT.png-6334fcb848493621387efb6556c81e19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/SimpleParticles_All_01_SPRT.png" +dest_files=["res://.godot/imported/SimpleParticles_All_01_SPRT.png-6334fcb848493621387efb6556c81e19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/SimpleWater_All_01_SPRT.png b/extracted/Texture2D/SimpleWater_All_01_SPRT.png new file mode 100644 index 0000000..47f8391 --- /dev/null +++ b/extracted/Texture2D/SimpleWater_All_01_SPRT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a35fbdc4fdf938444941d619d6ea1a4f552900911cfbd38c724c4fa60ac6b1e +size 259317 diff --git a/extracted/Texture2D/SimpleWater_All_01_SPRT.png.import b/extracted/Texture2D/SimpleWater_All_01_SPRT.png.import new file mode 100644 index 0000000..4646f65 --- /dev/null +++ b/extracted/Texture2D/SimpleWater_All_01_SPRT.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bywnk72dh01lw" +path="res://.godot/imported/SimpleWater_All_01_SPRT.png-9f7cdc6d3fdbd882a2a265e5fdb384c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/SimpleWater_All_01_SPRT.png" +dest_files=["res://.godot/imported/SimpleWater_All_01_SPRT.png-9f7cdc6d3fdbd882a2a265e5fdb384c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Sticker_Album #92806.png b/extracted/Texture2D/Sticker_Album #92806.png new file mode 100644 index 0000000..c1efdb3 --- /dev/null +++ b/extracted/Texture2D/Sticker_Album #92806.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f079ed79b9581a64ec8bd92422cf94c54e756a99723ec7eeff982f8c9c90f3c8 +size 26581 diff --git a/extracted/Texture2D/Sticker_Album #92806.png.import b/extracted/Texture2D/Sticker_Album #92806.png.import new file mode 100644 index 0000000..ad967ca --- /dev/null +++ b/extracted/Texture2D/Sticker_Album #92806.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgrpkicev85n2" +path="res://.godot/imported/Sticker_Album #92806.png-1fb952d2b1c37022c6d7a6c04bac5374.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Sticker_Album #92806.png" +dest_files=["res://.godot/imported/Sticker_Album #92806.png-1fb952d2b1c37022c6d7a6c04bac5374.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Sticker_Album.png b/extracted/Texture2D/Sticker_Album.png new file mode 100644 index 0000000..c1efdb3 --- /dev/null +++ b/extracted/Texture2D/Sticker_Album.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f079ed79b9581a64ec8bd92422cf94c54e756a99723ec7eeff982f8c9c90f3c8 +size 26581 diff --git a/extracted/Texture2D/Sticker_Album.png.import b/extracted/Texture2D/Sticker_Album.png.import new file mode 100644 index 0000000..613c647 --- /dev/null +++ b/extracted/Texture2D/Sticker_Album.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br4vva1gtm7qu" +path="res://.godot/imported/Sticker_Album.png-74296134d73b83a834fdefaa2502a6bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Sticker_Album.png" +dest_files=["res://.godot/imported/Sticker_Album.png-74296134d73b83a834fdefaa2502a6bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Swinging Boat.png b/extracted/Texture2D/Swinging Boat.png new file mode 100644 index 0000000..dbf06fa --- /dev/null +++ b/extracted/Texture2D/Swinging Boat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376d2c084b2f4b505a13987c24f7204aced9ac3c962220a2aceb563680b84bdf +size 143959 diff --git a/extracted/Texture2D/Swinging Boat.png.import b/extracted/Texture2D/Swinging Boat.png.import new file mode 100644 index 0000000..f8485dd --- /dev/null +++ b/extracted/Texture2D/Swinging Boat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wsx5whadfl3b" +path="res://.godot/imported/Swinging Boat.png-4909dfa2de7cb5a9264e4fdf2aee2f04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Swinging Boat.png" +dest_files=["res://.godot/imported/Swinging Boat.png-4909dfa2de7cb5a9264e4fdf2aee2f04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/SwitchButtons.png b/extracted/Texture2D/SwitchButtons.png new file mode 100644 index 0000000..b5d361d --- /dev/null +++ b/extracted/Texture2D/SwitchButtons.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4673b40887dc2b4d795c0594cf3122f9522c88f9bb9d75e3fb10475c2f862788 +size 78582 diff --git a/extracted/Texture2D/SwitchButtons.png.import b/extracted/Texture2D/SwitchButtons.png.import new file mode 100644 index 0000000..186d028 --- /dev/null +++ b/extracted/Texture2D/SwitchButtons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxmdqw5koqfkj" +path="res://.godot/imported/SwitchButtons.png-6d141a58328b759f74def09425745632.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/SwitchButtons.png" +dest_files=["res://.godot/imported/SwitchButtons.png-6d141a58328b759f74def09425745632.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/TalkBubble.png b/extracted/Texture2D/TalkBubble.png new file mode 100644 index 0000000..6e608c6 --- /dev/null +++ b/extracted/Texture2D/TalkBubble.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f0d3526458b871d01b49862d0827fbeea516f7ebca0548fe8c74abb3e34a95 +size 15805 diff --git a/extracted/Texture2D/TalkBubble.png.import b/extracted/Texture2D/TalkBubble.png.import new file mode 100644 index 0000000..5538cc8 --- /dev/null +++ b/extracted/Texture2D/TalkBubble.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt3rxyphkvtyg" +path="res://.godot/imported/TalkBubble.png-6194cd03552e91323aee80186a6a0464.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/TalkBubble.png" +dest_files=["res://.godot/imported/TalkBubble.png-6194cd03552e91323aee80186a6a0464.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Telescope2Stickers.png b/extracted/Texture2D/Telescope2Stickers.png new file mode 100644 index 0000000..0159877 --- /dev/null +++ b/extracted/Texture2D/Telescope2Stickers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49c2a30215fa9947e1924b23e1d5ba7a49067c1e1f91c6cfab43bf89da5b328 +size 64193 diff --git a/extracted/Texture2D/Telescope2Stickers.png.import b/extracted/Texture2D/Telescope2Stickers.png.import new file mode 100644 index 0000000..d9801a3 --- /dev/null +++ b/extracted/Texture2D/Telescope2Stickers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbfirvwbv8oll" +path="res://.godot/imported/Telescope2Stickers.png-e68afa36bf182d6e393c48c6c728c415.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Telescope2Stickers.png" +dest_files=["res://.godot/imported/Telescope2Stickers.png-e68afa36bf182d6e393c48c6c728c415.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Tenis Cloth.png b/extracted/Texture2D/Tenis Cloth.png new file mode 100644 index 0000000..6ad9542 --- /dev/null +++ b/extracted/Texture2D/Tenis Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0633d9f5e576c9604c8af1bd84ab008c57c098ad6234f2c9f0e70539fd6392 +size 139937 diff --git a/extracted/Texture2D/Tenis Cloth.png.import b/extracted/Texture2D/Tenis Cloth.png.import new file mode 100644 index 0000000..ce259b6 --- /dev/null +++ b/extracted/Texture2D/Tenis Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo3ucctvd1qqi" +path="res://.godot/imported/Tenis Cloth.png-30d0bc064ad3591fb30744c1ee5751dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Tenis Cloth.png" +dest_files=["res://.godot/imported/Tenis Cloth.png-30d0bc064ad3591fb30744c1ee5751dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Tenis Hat Sticker.png b/extracted/Texture2D/Tenis Hat Sticker.png new file mode 100644 index 0000000..0cd9024 --- /dev/null +++ b/extracted/Texture2D/Tenis Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96fb619ec35b18a298ae9e3bf1cebe736725d9cba43d3fd1686ae3d19b8244b +size 46516 diff --git a/extracted/Texture2D/Tenis Hat Sticker.png.import b/extracted/Texture2D/Tenis Hat Sticker.png.import new file mode 100644 index 0000000..546762a --- /dev/null +++ b/extracted/Texture2D/Tenis Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u55wfixfhig" +path="res://.godot/imported/Tenis Hat Sticker.png-83f1d03105d37e8ee6df7643b77bdd37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Tenis Hat Sticker.png" +dest_files=["res://.godot/imported/Tenis Hat Sticker.png-83f1d03105d37e8ee6df7643b77bdd37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Tenis Hat.png b/extracted/Texture2D/Tenis Hat.png new file mode 100644 index 0000000..e5d4bf5 --- /dev/null +++ b/extracted/Texture2D/Tenis Hat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ccb9f5c7682a4e3a6e86ffadb856b896f382bf68e755be38cb48fa7c17ffa6 +size 84320 diff --git a/extracted/Texture2D/Tenis Hat.png.import b/extracted/Texture2D/Tenis Hat.png.import new file mode 100644 index 0000000..2d5829c --- /dev/null +++ b/extracted/Texture2D/Tenis Hat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byosbfqh6iie4" +path="res://.godot/imported/Tenis Hat.png-b55f12f459cd44ad22ff0b16a9df96b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Tenis Hat.png" +dest_files=["res://.godot/imported/Tenis Hat.png-b55f12f459cd44ad22ff0b16a9df96b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Tenis cloth Sticker.png b/extracted/Texture2D/Tenis cloth Sticker.png new file mode 100644 index 0000000..40968a8 --- /dev/null +++ b/extracted/Texture2D/Tenis cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb6c2bfd2e8545fb8ea6bd9dbf7f6f4a463680efd0681d6c081a561691dc48a +size 46086 diff --git a/extracted/Texture2D/Tenis cloth Sticker.png.import b/extracted/Texture2D/Tenis cloth Sticker.png.import new file mode 100644 index 0000000..2b91d8e --- /dev/null +++ b/extracted/Texture2D/Tenis cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcaosyy04vqr0" +path="res://.godot/imported/Tenis cloth Sticker.png-957a0cb12bc24b7b40cb3ae55cf1acbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Tenis cloth Sticker.png" +dest_files=["res://.godot/imported/Tenis cloth Sticker.png-957a0cb12bc24b7b40cb3ae55cf1acbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Trader Halloeen hanger.png b/extracted/Texture2D/Trader Halloeen hanger.png new file mode 100644 index 0000000..c11af40 --- /dev/null +++ b/extracted/Texture2D/Trader Halloeen hanger.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d35cbfea0acdb5e9814229aa5ab17b7d84a4c08fbc4218ddca8fee1e6d6b6a0 +size 43736 diff --git a/extracted/Texture2D/Trader Halloeen hanger.png.import b/extracted/Texture2D/Trader Halloeen hanger.png.import new file mode 100644 index 0000000..c5c82d8 --- /dev/null +++ b/extracted/Texture2D/Trader Halloeen hanger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://geio7i351hw" +path="res://.godot/imported/Trader Halloeen hanger.png-c325bf515fb63a97171fbd509685710b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Trader Halloeen hanger.png" +dest_files=["res://.godot/imported/Trader Halloeen hanger.png-c325bf515fb63a97171fbd509685710b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Trader assets Cloth box.png b/extracted/Texture2D/Trader assets Cloth box.png new file mode 100644 index 0000000..1cbeb38 --- /dev/null +++ b/extracted/Texture2D/Trader assets Cloth box.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae802d980a62968b3b11580187ae4ba20521fb0725c81a8693756d8d84862f1 +size 30148 diff --git a/extracted/Texture2D/Trader assets Cloth box.png.import b/extracted/Texture2D/Trader assets Cloth box.png.import new file mode 100644 index 0000000..2b6b41a --- /dev/null +++ b/extracted/Texture2D/Trader assets Cloth box.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dulqurlvqrdkr" +path="res://.godot/imported/Trader assets Cloth box.png-01da0f88d954763e4fb79f7dd4837e19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Trader assets Cloth box.png" +dest_files=["res://.godot/imported/Trader assets Cloth box.png-01da0f88d954763e4fb79f7dd4837e19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Trader assets Cloth hang.png b/extracted/Texture2D/Trader assets Cloth hang.png new file mode 100644 index 0000000..d8ff171 --- /dev/null +++ b/extracted/Texture2D/Trader assets Cloth hang.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bc4de7559dddee8f2f9f0c53eac6a45479b30d976270d67cb3961a48f07100 +size 31353 diff --git a/extracted/Texture2D/Trader assets Cloth hang.png.import b/extracted/Texture2D/Trader assets Cloth hang.png.import new file mode 100644 index 0000000..82ecdd8 --- /dev/null +++ b/extracted/Texture2D/Trader assets Cloth hang.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bedmpijrgwk33" +path="res://.godot/imported/Trader assets Cloth hang.png-185bce9c06e26800771c89b58b5a6b29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Trader assets Cloth hang.png" +dest_files=["res://.godot/imported/Trader assets Cloth hang.png-185bce9c06e26800771c89b58b5a6b29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Trader assets Pot stand.png b/extracted/Texture2D/Trader assets Pot stand.png new file mode 100644 index 0000000..cfd7814 --- /dev/null +++ b/extracted/Texture2D/Trader assets Pot stand.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478bfa683c895016fa56d4316fb4b00f88be3d52ea4c903ba684ffac75882b3b +size 41734 diff --git a/extracted/Texture2D/Trader assets Pot stand.png.import b/extracted/Texture2D/Trader assets Pot stand.png.import new file mode 100644 index 0000000..728d3d7 --- /dev/null +++ b/extracted/Texture2D/Trader assets Pot stand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4xyysrikwas4" +path="res://.godot/imported/Trader assets Pot stand.png-a939e55a8952b202d02b91ce833fcc86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Trader assets Pot stand.png" +dest_files=["res://.godot/imported/Trader assets Pot stand.png-a939e55a8952b202d02b91ce833fcc86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Trader deco witch brooms.png b/extracted/Texture2D/Trader deco witch brooms.png new file mode 100644 index 0000000..0c7f8c3 --- /dev/null +++ b/extracted/Texture2D/Trader deco witch brooms.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5558e0e7094da907edfb51e10dba0fe9f53d49053e656cdd0a972539a41fd5b +size 44247 diff --git a/extracted/Texture2D/Trader deco witch brooms.png.import b/extracted/Texture2D/Trader deco witch brooms.png.import new file mode 100644 index 0000000..4543d2c --- /dev/null +++ b/extracted/Texture2D/Trader deco witch brooms.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb3t5lko1nu4w" +path="res://.godot/imported/Trader deco witch brooms.png-1846818fb70982327ce640416fc4fd4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Trader deco witch brooms.png" +dest_files=["res://.godot/imported/Trader deco witch brooms.png-1846818fb70982327ce640416fc4fd4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/TraderBoat.png b/extracted/Texture2D/TraderBoat.png new file mode 100644 index 0000000..6a2f3ed --- /dev/null +++ b/extracted/Texture2D/TraderBoat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33c57175666ee8288bd5a5c65a22feeff1817dc259ba8b307bd95929753aeaa +size 54240 diff --git a/extracted/Texture2D/TraderBoat.png.import b/extracted/Texture2D/TraderBoat.png.import new file mode 100644 index 0000000..8535570 --- /dev/null +++ b/extracted/Texture2D/TraderBoat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4lsom8s01tph" +path="res://.godot/imported/TraderBoat.png-42a966feacf0999ecdc4b2bdfd4cc40a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/TraderBoat.png" +dest_files=["res://.godot/imported/TraderBoat.png-42a966feacf0999ecdc4b2bdfd4cc40a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/TreeSwamp_Sticker.png b/extracted/Texture2D/TreeSwamp_Sticker.png new file mode 100644 index 0000000..d22397d --- /dev/null +++ b/extracted/Texture2D/TreeSwamp_Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e602e5328206cb9bc8dfc95f357b462aee02dbd26a8e6a6e7a24a87b6eab4c +size 96740 diff --git a/extracted/Texture2D/TreeSwamp_Sticker.png.import b/extracted/Texture2D/TreeSwamp_Sticker.png.import new file mode 100644 index 0000000..9827f06 --- /dev/null +++ b/extracted/Texture2D/TreeSwamp_Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvsi0vh708w6h" +path="res://.godot/imported/TreeSwamp_Sticker.png-2b6bfff0b209ba0dd1e1f175d940da05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/TreeSwamp_Sticker.png" +dest_files=["res://.godot/imported/TreeSwamp_Sticker.png-2b6bfff0b209ba0dd1e1f175d940da05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Vampire Cloth.png b/extracted/Texture2D/Vampire Cloth.png new file mode 100644 index 0000000..00acb8d --- /dev/null +++ b/extracted/Texture2D/Vampire Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c63b0a3b879f3ddf7f0f834b19af2f96a06c7a34158f57752845b27c3a4ea5 +size 148101 diff --git a/extracted/Texture2D/Vampire Cloth.png.import b/extracted/Texture2D/Vampire Cloth.png.import new file mode 100644 index 0000000..bc9498c --- /dev/null +++ b/extracted/Texture2D/Vampire Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y2ukh3ame144" +path="res://.godot/imported/Vampire Cloth.png-0262818d522350c6b55d29c625f72342.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Vampire Cloth.png" +dest_files=["res://.godot/imported/Vampire Cloth.png-0262818d522350c6b55d29c625f72342.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Vampire cloth Sticker #62616.png b/extracted/Texture2D/Vampire cloth Sticker #62616.png new file mode 100644 index 0000000..3b24810 --- /dev/null +++ b/extracted/Texture2D/Vampire cloth Sticker #62616.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd30525cca612e8948d6b41f35c216943479fe9fd0cffbc23772cc9cfb4f8a4 +size 58805 diff --git a/extracted/Texture2D/Vampire cloth Sticker #62616.png.import b/extracted/Texture2D/Vampire cloth Sticker #62616.png.import new file mode 100644 index 0000000..372c0f9 --- /dev/null +++ b/extracted/Texture2D/Vampire cloth Sticker #62616.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhhwuxgw6lm0x" +path="res://.godot/imported/Vampire cloth Sticker #62616.png-69b28e0fcdee08eae307280117aacc47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Vampire cloth Sticker #62616.png" +dest_files=["res://.godot/imported/Vampire cloth Sticker #62616.png-69b28e0fcdee08eae307280117aacc47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Vampire cloth Sticker.png b/extracted/Texture2D/Vampire cloth Sticker.png new file mode 100644 index 0000000..3b24810 --- /dev/null +++ b/extracted/Texture2D/Vampire cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd30525cca612e8948d6b41f35c216943479fe9fd0cffbc23772cc9cfb4f8a4 +size 58805 diff --git a/extracted/Texture2D/Vampire cloth Sticker.png.import b/extracted/Texture2D/Vampire cloth Sticker.png.import new file mode 100644 index 0000000..86a8c37 --- /dev/null +++ b/extracted/Texture2D/Vampire cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c213dniusqpo7" +path="res://.godot/imported/Vampire cloth Sticker.png-95854030b3acdba37025a1878c6eb1f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Vampire cloth Sticker.png" +dest_files=["res://.godot/imported/Vampire cloth Sticker.png-95854030b3acdba37025a1878c6eb1f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Water_sheet_1.png b/extracted/Texture2D/Water_sheet_1.png new file mode 100644 index 0000000..1cd6489 --- /dev/null +++ b/extracted/Texture2D/Water_sheet_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5862ec4a2d9b7a9e5f9d05a775ea994cc71c1469fbda5f1563d48e89482b63c2 +size 58136 diff --git a/extracted/Texture2D/Water_sheet_1.png.import b/extracted/Texture2D/Water_sheet_1.png.import new file mode 100644 index 0000000..016bd42 --- /dev/null +++ b/extracted/Texture2D/Water_sheet_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xkbpvpvycjef" +path="res://.godot/imported/Water_sheet_1.png-bc58e90bd4c7373702f536c744e0ff35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Water_sheet_1.png" +dest_files=["res://.godot/imported/Water_sheet_1.png-bc58e90bd4c7373702f536c744e0ff35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Wave_Tile.png b/extracted/Texture2D/Wave_Tile.png new file mode 100644 index 0000000..81f449d --- /dev/null +++ b/extracted/Texture2D/Wave_Tile.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f752e326fac0071860f8143f39905d1dc02b93b5985674dcd0e01a74790542bf +size 124340 diff --git a/extracted/Texture2D/Wave_Tile.png.import b/extracted/Texture2D/Wave_Tile.png.import new file mode 100644 index 0000000..614ffbf --- /dev/null +++ b/extracted/Texture2D/Wave_Tile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlmyth835qp3t" +path="res://.godot/imported/Wave_Tile.png-b903d755a28b0b5e6212c8097afe30a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Wave_Tile.png" +dest_files=["res://.godot/imported/Wave_Tile.png-b903d755a28b0b5e6212c8097afe30a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Well_Trophy_outline.png b/extracted/Texture2D/Well_Trophy_outline.png new file mode 100644 index 0000000..3f3b75b --- /dev/null +++ b/extracted/Texture2D/Well_Trophy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e156fda1215a7e3dcddf49beaede31fd63f56221af623d221563ffdfddfdc516 +size 80021 diff --git a/extracted/Texture2D/Well_Trophy_outline.png.import b/extracted/Texture2D/Well_Trophy_outline.png.import new file mode 100644 index 0000000..2f4a7eb --- /dev/null +++ b/extracted/Texture2D/Well_Trophy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dngmn5pcc84ws" +path="res://.godot/imported/Well_Trophy_outline.png-d6c082797af204a510c404884bcac299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Well_Trophy_outline.png" +dest_files=["res://.godot/imported/Well_Trophy_outline.png-d6c082797af204a510c404884bcac299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Wes Cloth.png b/extracted/Texture2D/Wes Cloth.png new file mode 100644 index 0000000..c3017e5 --- /dev/null +++ b/extracted/Texture2D/Wes Cloth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68827c4367798824c5c4e1b191cd970df77cc88aa070327b0d84459ad1afa4b3 +size 148730 diff --git a/extracted/Texture2D/Wes Cloth.png.import b/extracted/Texture2D/Wes Cloth.png.import new file mode 100644 index 0000000..542f7ba --- /dev/null +++ b/extracted/Texture2D/Wes Cloth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjprfmgk67kd1" +path="res://.godot/imported/Wes Cloth.png-261f42430ef43c8578da149eb5fc7bd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Wes Cloth.png" +dest_files=["res://.godot/imported/Wes Cloth.png-261f42430ef43c8578da149eb5fc7bd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Wes Cloth Sticker.png b/extracted/Texture2D/Wes Cloth Sticker.png new file mode 100644 index 0000000..3307ed6 --- /dev/null +++ b/extracted/Texture2D/Wes Cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2519424f1905962507bb97ec2c7a9ca4586a8eb986ee942396d311a17e6b7fc5 +size 42925 diff --git a/extracted/Texture2D/Wes Cloth Sticker.png.import b/extracted/Texture2D/Wes Cloth Sticker.png.import new file mode 100644 index 0000000..16175d6 --- /dev/null +++ b/extracted/Texture2D/Wes Cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6r0kyf01geja" +path="res://.godot/imported/Wes Cloth Sticker.png-d65bbc50324ad840e288eeac38894f09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Wes Cloth Sticker.png" +dest_files=["res://.godot/imported/Wes Cloth Sticker.png-d65bbc50324ad840e288eeac38894f09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Whitch Cloth #62877.png b/extracted/Texture2D/Whitch Cloth #62877.png new file mode 100644 index 0000000..212caad --- /dev/null +++ b/extracted/Texture2D/Whitch Cloth #62877.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e8087780d1c70a8f0e9ef285516c97f0e82efd2abf111f597bfb23efa2f75f +size 147559 diff --git a/extracted/Texture2D/Whitch Cloth #62877.png.import b/extracted/Texture2D/Whitch Cloth #62877.png.import new file mode 100644 index 0000000..0dc48d8 --- /dev/null +++ b/extracted/Texture2D/Whitch Cloth #62877.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e3unuu0supdo" +path="res://.godot/imported/Whitch Cloth #62877.png-ab76192b1b2c5b3d70305156e3c92339.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Whitch Cloth #62877.png" +dest_files=["res://.godot/imported/Whitch Cloth #62877.png-ab76192b1b2c5b3d70305156e3c92339.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Whitch Hat #62998.png b/extracted/Texture2D/Whitch Hat #62998.png new file mode 100644 index 0000000..44aced1 --- /dev/null +++ b/extracted/Texture2D/Whitch Hat #62998.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13c445b744a512bc938cc977b74215afd902b16eb24239710cfb53325efa931 +size 235508 diff --git a/extracted/Texture2D/Whitch Hat #62998.png.import b/extracted/Texture2D/Whitch Hat #62998.png.import new file mode 100644 index 0000000..d2081af --- /dev/null +++ b/extracted/Texture2D/Whitch Hat #62998.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pkf86c0n3xig" +path="res://.godot/imported/Whitch Hat #62998.png-cd0597d0bf470b31af7a13b464a2c7f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Whitch Hat #62998.png" +dest_files=["res://.godot/imported/Whitch Hat #62998.png-cd0597d0bf470b31af7a13b464a2c7f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Witch Hat Sticker.png b/extracted/Texture2D/Witch Hat Sticker.png new file mode 100644 index 0000000..6e1512b --- /dev/null +++ b/extracted/Texture2D/Witch Hat Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4035795e98aaed9260f4e000b091730ef669fc217c4f0d0441625fad8a10f3 +size 50806 diff --git a/extracted/Texture2D/Witch Hat Sticker.png.import b/extracted/Texture2D/Witch Hat Sticker.png.import new file mode 100644 index 0000000..6e7238d --- /dev/null +++ b/extracted/Texture2D/Witch Hat Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3kks2cmbeprq" +path="res://.godot/imported/Witch Hat Sticker.png-f4e06b769ca0f482e7cf4655ab606855.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Witch Hat Sticker.png" +dest_files=["res://.godot/imported/Witch Hat Sticker.png-f4e06b769ca0f482e7cf4655ab606855.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/Witch cloth Sticker.png b/extracted/Texture2D/Witch cloth Sticker.png new file mode 100644 index 0000000..c9144db --- /dev/null +++ b/extracted/Texture2D/Witch cloth Sticker.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e447abeb269c1b9a6d9d49a272987efc9693382ea7a90015d32a5c2c2de78d0 +size 42888 diff --git a/extracted/Texture2D/Witch cloth Sticker.png.import b/extracted/Texture2D/Witch cloth Sticker.png.import new file mode 100644 index 0000000..108d680 --- /dev/null +++ b/extracted/Texture2D/Witch cloth Sticker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7pv5amv2tnm1" +path="res://.godot/imported/Witch cloth Sticker.png-9c4c128bb389a7d12c679916377c6342.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/Witch cloth Sticker.png" +dest_files=["res://.godot/imported/Witch cloth Sticker.png-9c4c128bb389a7d12c679916377c6342.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/album bg.png b/extracted/Texture2D/album bg.png new file mode 100644 index 0000000..731071a --- /dev/null +++ b/extracted/Texture2D/album bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b297e57df93ed3b9b3969f74b7b5677e51308990f598da328422b1ecbc5b1a3 +size 65655 diff --git a/extracted/Texture2D/album bg.png.import b/extracted/Texture2D/album bg.png.import new file mode 100644 index 0000000..449d4ee --- /dev/null +++ b/extracted/Texture2D/album bg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clt44i3m1y25e" +path="res://.godot/imported/album bg.png-117bc18a0a33bb2851b851860ade75c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/album bg.png" +dest_files=["res://.godot/imported/album bg.png-117bc18a0a33bb2851b851860ade75c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/album_KS_bg.png b/extracted/Texture2D/album_KS_bg.png new file mode 100644 index 0000000..11acd75 --- /dev/null +++ b/extracted/Texture2D/album_KS_bg.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e178d983c49a2d361d62913e3562a7a40c74ee3b0bf2b490343eae8bc80599 +size 60914 diff --git a/extracted/Texture2D/album_KS_bg.png.import b/extracted/Texture2D/album_KS_bg.png.import new file mode 100644 index 0000000..7557748 --- /dev/null +++ b/extracted/Texture2D/album_KS_bg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhgvbpck2fno3" +path="res://.godot/imported/album_KS_bg.png-4be3ff7ddb7b3ff349a0596db4134163.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/album_KS_bg.png" +dest_files=["res://.godot/imported/album_KS_bg.png-4be3ff7ddb7b3ff349a0596db4134163.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/appleSticker 1.png b/extracted/Texture2D/appleSticker 1.png new file mode 100644 index 0000000..cfb909f --- /dev/null +++ b/extracted/Texture2D/appleSticker 1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e7a67e6fcedc9f9ea33dd078862f2e864434341aa8383f64045fc8a4157453 +size 44075 diff --git a/extracted/Texture2D/appleSticker 1.png.import b/extracted/Texture2D/appleSticker 1.png.import new file mode 100644 index 0000000..5a7a8f8 --- /dev/null +++ b/extracted/Texture2D/appleSticker 1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmybjym6nie0w" +path="res://.godot/imported/appleSticker 1.png-e0c9330dc4df42977a539e91a378f707.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/appleSticker 1.png" +dest_files=["res://.godot/imported/appleSticker 1.png-e0c9330dc4df42977a539e91a378f707.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/boat_ground_SPRT.png b/extracted/Texture2D/boat_ground_SPRT.png new file mode 100644 index 0000000..3e6b3c6 --- /dev/null +++ b/extracted/Texture2D/boat_ground_SPRT.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96053256fa5db0384882c346acd3c4610eb1ab6c17fa7dfb5633770e17ee70ee +size 22836 diff --git a/extracted/Texture2D/boat_ground_SPRT.png.import b/extracted/Texture2D/boat_ground_SPRT.png.import new file mode 100644 index 0000000..6f84afe --- /dev/null +++ b/extracted/Texture2D/boat_ground_SPRT.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xp88st3xylbn" +path="res://.godot/imported/boat_ground_SPRT.png-b2aa0bb60fedd2dd95e72bb72579d6ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/boat_ground_SPRT.png" +dest_files=["res://.godot/imported/boat_ground_SPRT.png-b2aa0bb60fedd2dd95e72bb72579d6ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/book.png b/extracted/Texture2D/book.png new file mode 100644 index 0000000..5cd1a60 --- /dev/null +++ b/extracted/Texture2D/book.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a224446bdcc0b053ad62cc6b1dd403c24bccb29a5776d97d1f70adc41b3e55 +size 58783 diff --git a/extracted/Texture2D/book.png.import b/extracted/Texture2D/book.png.import new file mode 100644 index 0000000..f24515a --- /dev/null +++ b/extracted/Texture2D/book.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://irrmhfl1c8cg" +path="res://.godot/imported/book.png-856aa0a52519f446699728ebabf3ea43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/book.png" +dest_files=["res://.godot/imported/book.png-856aa0a52519f446699728ebabf3ea43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Alchemyst_outline.png b/extracted/Texture2D/char_Alchemyst_outline.png new file mode 100644 index 0000000..d769136 --- /dev/null +++ b/extracted/Texture2D/char_Alchemyst_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8634184770bdbab3e30db35dba3ed9e8978953c357949596be8ae626436d555f +size 150710 diff --git a/extracted/Texture2D/char_Alchemyst_outline.png.import b/extracted/Texture2D/char_Alchemyst_outline.png.import new file mode 100644 index 0000000..4354ea4 --- /dev/null +++ b/extracted/Texture2D/char_Alchemyst_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0800gfrfajfo" +path="res://.godot/imported/char_Alchemyst_outline.png-574ebd5001e5502f928b6a2bd491ab2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Alchemyst_outline.png" +dest_files=["res://.godot/imported/char_Alchemyst_outline.png-574ebd5001e5502f928b6a2bd491ab2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Backer_Axolotl_outline.png b/extracted/Texture2D/char_Backer_Axolotl_outline.png new file mode 100644 index 0000000..2d8b95d --- /dev/null +++ b/extracted/Texture2D/char_Backer_Axolotl_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21477ed9b4d0eebf0d338537890ac8b26d1e00ac149a811073f3e81e86b5082 +size 183642 diff --git a/extracted/Texture2D/char_Backer_Axolotl_outline.png.import b/extracted/Texture2D/char_Backer_Axolotl_outline.png.import new file mode 100644 index 0000000..6b19ab6 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Axolotl_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0qas4x3jb6kc" +path="res://.godot/imported/char_Backer_Axolotl_outline.png-14856cc480ba5e6f1158a5614aac7451.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Backer_Axolotl_outline.png" +dest_files=["res://.godot/imported/char_Backer_Axolotl_outline.png-14856cc480ba5e6f1158a5614aac7451.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Backer_Cerval_outline.png b/extracted/Texture2D/char_Backer_Cerval_outline.png new file mode 100644 index 0000000..bb56c71 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Cerval_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a23694e1765c5ba3a236faca0b109ce7f4aa5ba082ae68de743d780d8831fc +size 164344 diff --git a/extracted/Texture2D/char_Backer_Cerval_outline.png.import b/extracted/Texture2D/char_Backer_Cerval_outline.png.import new file mode 100644 index 0000000..b822d97 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Cerval_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmpirmhhxus2g" +path="res://.godot/imported/char_Backer_Cerval_outline.png-cb7fed51ef88d3a6323639207066b7bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Backer_Cerval_outline.png" +dest_files=["res://.godot/imported/char_Backer_Cerval_outline.png-cb7fed51ef88d3a6323639207066b7bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Backer_Chinchilla_outline.png b/extracted/Texture2D/char_Backer_Chinchilla_outline.png new file mode 100644 index 0000000..4f70712 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Chinchilla_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9e8052be51acb817e1d9a1d7c51b10dd50cd9cffbf1242e527ece9da7f76e5 +size 189052 diff --git a/extracted/Texture2D/char_Backer_Chinchilla_outline.png.import b/extracted/Texture2D/char_Backer_Chinchilla_outline.png.import new file mode 100644 index 0000000..0e1f988 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Chinchilla_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkv57vksxojnh" +path="res://.godot/imported/char_Backer_Chinchilla_outline.png-2f6b606f197ef69ede5ac86fccf91ef2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Backer_Chinchilla_outline.png" +dest_files=["res://.godot/imported/char_Backer_Chinchilla_outline.png-2f6b606f197ef69ede5ac86fccf91ef2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Backer_Manatee_outline.png b/extracted/Texture2D/char_Backer_Manatee_outline.png new file mode 100644 index 0000000..2d29412 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Manatee_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e3aca4b81321190b011eb0802dba2a3301693005e8495836434870c92b47eb +size 218934 diff --git a/extracted/Texture2D/char_Backer_Manatee_outline.png.import b/extracted/Texture2D/char_Backer_Manatee_outline.png.import new file mode 100644 index 0000000..40d3fd9 --- /dev/null +++ b/extracted/Texture2D/char_Backer_Manatee_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhxthjtef165s" +path="res://.godot/imported/char_Backer_Manatee_outline.png-a1a016b15a81ad347956a6d474fc5018.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Backer_Manatee_outline.png" +dest_files=["res://.godot/imported/char_Backer_Manatee_outline.png-a1a016b15a81ad347956a6d474fc5018.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Brotherhood1_outline.png b/extracted/Texture2D/char_Brotherhood1_outline.png new file mode 100644 index 0000000..93f1558 --- /dev/null +++ b/extracted/Texture2D/char_Brotherhood1_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c0bd5d6459bce7c8f851c6506474ce10d5a5230e797adf92dcd8db3731f106 +size 166199 diff --git a/extracted/Texture2D/char_Brotherhood1_outline.png.import b/extracted/Texture2D/char_Brotherhood1_outline.png.import new file mode 100644 index 0000000..a083382 --- /dev/null +++ b/extracted/Texture2D/char_Brotherhood1_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxi7n8kryc7j4" +path="res://.godot/imported/char_Brotherhood1_outline.png-37184dc99d3e15c1f58be363de07e733.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Brotherhood1_outline.png" +dest_files=["res://.godot/imported/char_Brotherhood1_outline.png-37184dc99d3e15c1f58be363de07e733.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Brotherhood2_outline.png b/extracted/Texture2D/char_Brotherhood2_outline.png new file mode 100644 index 0000000..bb3d53f --- /dev/null +++ b/extracted/Texture2D/char_Brotherhood2_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81282704d260c93fae071473f741e02b05b8e8e78837c3b9c55038ce74b117c3 +size 149878 diff --git a/extracted/Texture2D/char_Brotherhood2_outline.png.import b/extracted/Texture2D/char_Brotherhood2_outline.png.import new file mode 100644 index 0000000..b36e9f2 --- /dev/null +++ b/extracted/Texture2D/char_Brotherhood2_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjf0u2cox1syc" +path="res://.godot/imported/char_Brotherhood2_outline.png-ef4d2e08c1abac98b202dd1118ba159a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Brotherhood2_outline.png" +dest_files=["res://.godot/imported/char_Brotherhood2_outline.png-ef4d2e08c1abac98b202dd1118ba159a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Fathe_Young_outline.png b/extracted/Texture2D/char_Fathe_Young_outline.png new file mode 100644 index 0000000..e3bffe4 --- /dev/null +++ b/extracted/Texture2D/char_Fathe_Young_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa5eeef3a67b0e2e7f9ae80674ef641d159413336238d8384c24e078df2e807 +size 95713 diff --git a/extracted/Texture2D/char_Fathe_Young_outline.png.import b/extracted/Texture2D/char_Fathe_Young_outline.png.import new file mode 100644 index 0000000..fb6cfc9 --- /dev/null +++ b/extracted/Texture2D/char_Fathe_Young_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4pc078x0ytxg" +path="res://.godot/imported/char_Fathe_Young_outline.png-c973945983dfaf259ac835d804420d7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Fathe_Young_outline.png" +dest_files=["res://.godot/imported/char_Fathe_Young_outline.png-c973945983dfaf259ac835d804420d7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Father_outline.png b/extracted/Texture2D/char_Father_outline.png new file mode 100644 index 0000000..8565463 --- /dev/null +++ b/extracted/Texture2D/char_Father_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a117791f7812f507ce52f21545cadb505e2baeca4fd4650a4bc866be0dba843 +size 174609 diff --git a/extracted/Texture2D/char_Father_outline.png.import b/extracted/Texture2D/char_Father_outline.png.import new file mode 100644 index 0000000..564cbef --- /dev/null +++ b/extracted/Texture2D/char_Father_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30k63tx5d8bb" +path="res://.godot/imported/char_Father_outline.png-3a62e425c6d51995ee9be543dda0603b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Father_outline.png" +dest_files=["res://.godot/imported/char_Father_outline.png-3a62e425c6d51995ee9be543dda0603b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Kid_Flynn.png b/extracted/Texture2D/char_Kid_Flynn.png new file mode 100644 index 0000000..3375b00 --- /dev/null +++ b/extracted/Texture2D/char_Kid_Flynn.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46dbb406abcb30d9fec1fd4ec700d8dec7fbf0df09742177ce4ceb4b7f6708f +size 65265 diff --git a/extracted/Texture2D/char_Kid_Flynn.png.import b/extracted/Texture2D/char_Kid_Flynn.png.import new file mode 100644 index 0000000..cd44acf --- /dev/null +++ b/extracted/Texture2D/char_Kid_Flynn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0urfhaxnqggo" +path="res://.godot/imported/char_Kid_Flynn.png-5c1f7ce3399ff1c6ded59cc08e88e3b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Kid_Flynn.png" +dest_files=["res://.godot/imported/char_Kid_Flynn.png-5c1f7ce3399ff1c6ded59cc08e88e3b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Lion_outline.png b/extracted/Texture2D/char_Lion_outline.png new file mode 100644 index 0000000..aafc8e4 --- /dev/null +++ b/extracted/Texture2D/char_Lion_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d2fdbc6fe60fae140186e322c49428704b5d17cc3edcba45511cd03ceb81e8 +size 180588 diff --git a/extracted/Texture2D/char_Lion_outline.png.import b/extracted/Texture2D/char_Lion_outline.png.import new file mode 100644 index 0000000..05c98c3 --- /dev/null +++ b/extracted/Texture2D/char_Lion_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuuxw3kb0sh8h" +path="res://.godot/imported/char_Lion_outline.png-60678ee3bb860b4d0bbd6ebb7c563d16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Lion_outline.png" +dest_files=["res://.godot/imported/char_Lion_outline.png-60678ee3bb860b4d0bbd6ebb7c563d16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Memorie_of_Father_outline.png b/extracted/Texture2D/char_Memorie_of_Father_outline.png new file mode 100644 index 0000000..3b2be8b --- /dev/null +++ b/extracted/Texture2D/char_Memorie_of_Father_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621c5586f587347e9085fda10c089c8537b41634619a4d4eeb11ae4052b46fe0 +size 102810 diff --git a/extracted/Texture2D/char_Memorie_of_Father_outline.png.import b/extracted/Texture2D/char_Memorie_of_Father_outline.png.import new file mode 100644 index 0000000..f911bb8 --- /dev/null +++ b/extracted/Texture2D/char_Memorie_of_Father_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4tv8ei1fycoa" +path="res://.godot/imported/char_Memorie_of_Father_outline.png-ed246b33d95b7093001fe782561b0fce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Memorie_of_Father_outline.png" +dest_files=["res://.godot/imported/char_Memorie_of_Father_outline.png-ed246b33d95b7093001fe782561b0fce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Miner_outline.png b/extracted/Texture2D/char_Miner_outline.png new file mode 100644 index 0000000..23e2783 --- /dev/null +++ b/extracted/Texture2D/char_Miner_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1920691452b1e162cd69444f72590ceb4a1c7afce15ae4138d84378d7201cf4d +size 173833 diff --git a/extracted/Texture2D/char_Miner_outline.png.import b/extracted/Texture2D/char_Miner_outline.png.import new file mode 100644 index 0000000..c6fe361 --- /dev/null +++ b/extracted/Texture2D/char_Miner_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7u283pnds7n" +path="res://.godot/imported/char_Miner_outline.png-30f7665ea5293961c3c2fe1a09051d88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Miner_outline.png" +dest_files=["res://.godot/imported/char_Miner_outline.png-30f7665ea5293961c3c2fe1a09051d88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Musician_outline #62432.png b/extracted/Texture2D/char_Musician_outline #62432.png new file mode 100644 index 0000000..9f732cb --- /dev/null +++ b/extracted/Texture2D/char_Musician_outline #62432.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9ba60e397440304b02134ec165fd053bc7cc8c152c191db3771ccb5d70db21 +size 189772 diff --git a/extracted/Texture2D/char_Musician_outline #62432.png.import b/extracted/Texture2D/char_Musician_outline #62432.png.import new file mode 100644 index 0000000..2d637c4 --- /dev/null +++ b/extracted/Texture2D/char_Musician_outline #62432.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h4nuoc1drny6" +path="res://.godot/imported/char_Musician_outline #62432.png-86e2fe5790f091502b51c06de76b4ad8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Musician_outline #62432.png" +dest_files=["res://.godot/imported/char_Musician_outline #62432.png-86e2fe5790f091502b51c06de76b4ad8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Musician_outline.png b/extracted/Texture2D/char_Musician_outline.png new file mode 100644 index 0000000..9f732cb --- /dev/null +++ b/extracted/Texture2D/char_Musician_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9ba60e397440304b02134ec165fd053bc7cc8c152c191db3771ccb5d70db21 +size 189772 diff --git a/extracted/Texture2D/char_Musician_outline.png.import b/extracted/Texture2D/char_Musician_outline.png.import new file mode 100644 index 0000000..4e6c3d0 --- /dev/null +++ b/extracted/Texture2D/char_Musician_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1vkgxo302vy4" +path="res://.godot/imported/char_Musician_outline.png-be7bdbf4aca249e66bdc581bd4500caa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Musician_outline.png" +dest_files=["res://.godot/imported/char_Musician_outline.png-be7bdbf4aca249e66bdc581bd4500caa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Oldlady_outline.png b/extracted/Texture2D/char_Oldlady_outline.png new file mode 100644 index 0000000..0616c38 --- /dev/null +++ b/extracted/Texture2D/char_Oldlady_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086450d5164f6f2474c890d70e11ae66fbf40ee54493618257b1a4457e33bf95 +size 200562 diff --git a/extracted/Texture2D/char_Oldlady_outline.png.import b/extracted/Texture2D/char_Oldlady_outline.png.import new file mode 100644 index 0000000..c4de883 --- /dev/null +++ b/extracted/Texture2D/char_Oldlady_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xtlll1b5ipnp" +path="res://.godot/imported/char_Oldlady_outline.png-808b67617343286f7fe1496a2a8eedfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Oldlady_outline.png" +dest_files=["res://.godot/imported/char_Oldlady_outline.png-808b67617343286f7fe1496a2a8eedfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Pirate_outline.png b/extracted/Texture2D/char_Pirate_outline.png new file mode 100644 index 0000000..d73dd9b --- /dev/null +++ b/extracted/Texture2D/char_Pirate_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3719f0c312c175916a255838e5e153cf662095f05c440b028c5f5f21c4c355db +size 179894 diff --git a/extracted/Texture2D/char_Pirate_outline.png.import b/extracted/Texture2D/char_Pirate_outline.png.import new file mode 100644 index 0000000..746ae77 --- /dev/null +++ b/extracted/Texture2D/char_Pirate_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cerhdgpi20cqe" +path="res://.godot/imported/char_Pirate_outline.png-22d4f713574f40781df92b5284e40503.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Pirate_outline.png" +dest_files=["res://.godot/imported/char_Pirate_outline.png-22d4f713574f40781df92b5284e40503.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Racoon.png b/extracted/Texture2D/char_Racoon.png new file mode 100644 index 0000000..19070d4 --- /dev/null +++ b/extracted/Texture2D/char_Racoon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a232b2f5d280ad10de21bbec7b298417bdeeba278442e14a42b7855fd07976c5 +size 143443 diff --git a/extracted/Texture2D/char_Racoon.png.import b/extracted/Texture2D/char_Racoon.png.import new file mode 100644 index 0000000..f59f8cf --- /dev/null +++ b/extracted/Texture2D/char_Racoon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qcyvk3en2sp7" +path="res://.godot/imported/char_Racoon.png-fa5320e94f89f81dffe5305a9893bb4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Racoon.png" +dest_files=["res://.godot/imported/char_Racoon.png-fa5320e94f89f81dffe5305a9893bb4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Racoon_outline.png b/extracted/Texture2D/char_Racoon_outline.png new file mode 100644 index 0000000..0d71e57 --- /dev/null +++ b/extracted/Texture2D/char_Racoon_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dddd3371cb72452a5b2ecf894fb4ff0dbd124ceb7aa5036e345848814b5fde3 +size 161714 diff --git a/extracted/Texture2D/char_Racoon_outline.png.import b/extracted/Texture2D/char_Racoon_outline.png.import new file mode 100644 index 0000000..e310061 --- /dev/null +++ b/extracted/Texture2D/char_Racoon_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buw240ikhqeau" +path="res://.godot/imported/char_Racoon_outline.png-804ca3307bf378381c3a45a74c368e2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Racoon_outline.png" +dest_files=["res://.godot/imported/char_Racoon_outline.png-804ca3307bf378381c3a45a74c368e2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_ShootingAlley_outline.png b/extracted/Texture2D/char_ShootingAlley_outline.png new file mode 100644 index 0000000..35b52f9 --- /dev/null +++ b/extracted/Texture2D/char_ShootingAlley_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4084581b1c5e21c8f6188a202bf69e2ce7da0af665dab000176297610d63a0e +size 156179 diff --git a/extracted/Texture2D/char_ShootingAlley_outline.png.import b/extracted/Texture2D/char_ShootingAlley_outline.png.import new file mode 100644 index 0000000..e32c82a --- /dev/null +++ b/extracted/Texture2D/char_ShootingAlley_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfqm0fv5eqx0a" +path="res://.godot/imported/char_ShootingAlley_outline.png-373e56181f8d712b5a32e5f914db8bc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_ShootingAlley_outline.png" +dest_files=["res://.godot/imported/char_ShootingAlley_outline.png-373e56181f8d712b5a32e5f914db8bc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Support_outline.png b/extracted/Texture2D/char_Support_outline.png new file mode 100644 index 0000000..a65bc30 --- /dev/null +++ b/extracted/Texture2D/char_Support_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f550d7465cd1dd99b21adaa013d4d24f32582ee929d267595cc17a642d0d10 +size 153233 diff --git a/extracted/Texture2D/char_Support_outline.png.import b/extracted/Texture2D/char_Support_outline.png.import new file mode 100644 index 0000000..1e0110c --- /dev/null +++ b/extracted/Texture2D/char_Support_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buk4wmhugoe5c" +path="res://.godot/imported/char_Support_outline.png-418cb8342e703b6afa7a33d50e0c9416.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Support_outline.png" +dest_files=["res://.godot/imported/char_Support_outline.png-418cb8342e703b6afa7a33d50e0c9416.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_Trader_outline.png b/extracted/Texture2D/char_Trader_outline.png new file mode 100644 index 0000000..ec7b22a --- /dev/null +++ b/extracted/Texture2D/char_Trader_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4287120ab3125bf752de02cd157efc3e58a0774969855d6b34c37ca2b9d17254 +size 200636 diff --git a/extracted/Texture2D/char_Trader_outline.png.import b/extracted/Texture2D/char_Trader_outline.png.import new file mode 100644 index 0000000..76f5a8a --- /dev/null +++ b/extracted/Texture2D/char_Trader_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1odue4e2yjyx" +path="res://.godot/imported/char_Trader_outline.png-e4e1e4985dd1afa7597ca8b7f600d261.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_Trader_outline.png" +dest_files=["res://.godot/imported/char_Trader_outline.png-e4e1e4985dd1afa7597ca8b7f600d261.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_cat.png b/extracted/Texture2D/char_cat.png new file mode 100644 index 0000000..6a99587 --- /dev/null +++ b/extracted/Texture2D/char_cat.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710182faf6a74fa8977ba48ae62440ea55ab5217a9d883f754fee1e4d5f09a55 +size 40827 diff --git a/extracted/Texture2D/char_cat.png.import b/extracted/Texture2D/char_cat.png.import new file mode 100644 index 0000000..1c2e25d --- /dev/null +++ b/extracted/Texture2D/char_cat.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cksskae23cmvl" +path="res://.godot/imported/char_cat.png-71835d6bcceba77974b803301ad7ffbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_cat.png" +dest_files=["res://.godot/imported/char_cat.png-71835d6bcceba77974b803301ad7ffbb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_cat2_Outline.png b/extracted/Texture2D/char_cat2_Outline.png new file mode 100644 index 0000000..a107ae7 --- /dev/null +++ b/extracted/Texture2D/char_cat2_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f10e1d92f314d003a896c320fe05eded8596ea0301c51ea27f774a3357a3c0cc +size 57130 diff --git a/extracted/Texture2D/char_cat2_Outline.png.import b/extracted/Texture2D/char_cat2_Outline.png.import new file mode 100644 index 0000000..ae848ae --- /dev/null +++ b/extracted/Texture2D/char_cat2_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbqutp710g8n1" +path="res://.godot/imported/char_cat2_Outline.png-f50f4b433f3810c1227e73cec32a91a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_cat2_Outline.png" +dest_files=["res://.godot/imported/char_cat2_Outline.png-f50f4b433f3810c1227e73cec32a91a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_cat_outline.png b/extracted/Texture2D/char_cat_outline.png new file mode 100644 index 0000000..fc9f34d --- /dev/null +++ b/extracted/Texture2D/char_cat_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4992da111dd8fe2dc23496ef8c0557d49bd9df1475cd2a117e92defa96fc1219 +size 48429 diff --git a/extracted/Texture2D/char_cat_outline.png.import b/extracted/Texture2D/char_cat_outline.png.import new file mode 100644 index 0000000..48547cf --- /dev/null +++ b/extracted/Texture2D/char_cat_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtd0ec8c46u1i" +path="res://.godot/imported/char_cat_outline.png-7f6cd4fa4e00677aad5711cda06c26fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_cat_outline.png" +dest_files=["res://.godot/imported/char_cat_outline.png-7f6cd4fa4e00677aad5711cda06c26fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_child1_outline.png b/extracted/Texture2D/char_child1_outline.png new file mode 100644 index 0000000..2c9fbdc --- /dev/null +++ b/extracted/Texture2D/char_child1_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d4a81f4e097b3a224a1c76fd68a356c1cea9590725168213b12dcf9e36f886 +size 132345 diff --git a/extracted/Texture2D/char_child1_outline.png.import b/extracted/Texture2D/char_child1_outline.png.import new file mode 100644 index 0000000..9c95626 --- /dev/null +++ b/extracted/Texture2D/char_child1_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cud78nutvsa1j" +path="res://.godot/imported/char_child1_outline.png-32eb368e4ef92e8102f935dd52d6c00a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_child1_outline.png" +dest_files=["res://.godot/imported/char_child1_outline.png-32eb368e4ef92e8102f935dd52d6c00a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_child2_outline.png b/extracted/Texture2D/char_child2_outline.png new file mode 100644 index 0000000..25920a8 --- /dev/null +++ b/extracted/Texture2D/char_child2_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954c4cfdfe02149cec45630a2271329b4d1f727ffe104966efbd6f5041e9799c +size 125213 diff --git a/extracted/Texture2D/char_child2_outline.png.import b/extracted/Texture2D/char_child2_outline.png.import new file mode 100644 index 0000000..adaef25 --- /dev/null +++ b/extracted/Texture2D/char_child2_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0sxurrlo5v2k" +path="res://.godot/imported/char_child2_outline.png-9b33bf62668f76b44b64be8944ec9adc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_child2_outline.png" +dest_files=["res://.godot/imported/char_child2_outline.png-9b33bf62668f76b44b64be8944ec9adc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_crab_outline.png b/extracted/Texture2D/char_crab_outline.png new file mode 100644 index 0000000..089b4f0 --- /dev/null +++ b/extracted/Texture2D/char_crab_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ebb411e15ccdffa6da07723ad894b8800a53228b9076c94be590e083b843f9 +size 38974 diff --git a/extracted/Texture2D/char_crab_outline.png.import b/extracted/Texture2D/char_crab_outline.png.import new file mode 100644 index 0000000..bbafd04 --- /dev/null +++ b/extracted/Texture2D/char_crab_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0ng4srsm5jlj" +path="res://.godot/imported/char_crab_outline.png-552dc56bc356d585d602f63576b2a760.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_crab_outline.png" +dest_files=["res://.godot/imported/char_crab_outline.png-552dc56bc356d585d602f63576b2a760.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_dog.png b/extracted/Texture2D/char_dog.png new file mode 100644 index 0000000..e1ad904 --- /dev/null +++ b/extracted/Texture2D/char_dog.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59413d4445e648f577b6520b02c65a75fdaba7f87535e72bbd4d56cf3337356 +size 47833 diff --git a/extracted/Texture2D/char_dog.png.import b/extracted/Texture2D/char_dog.png.import new file mode 100644 index 0000000..63f1698 --- /dev/null +++ b/extracted/Texture2D/char_dog.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s1wenxqqco5g" +path="res://.godot/imported/char_dog.png-316f36f8a17167f5e12de8bd573f0050.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_dog.png" +dest_files=["res://.godot/imported/char_dog.png-316f36f8a17167f5e12de8bd573f0050.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_dog2_Outline.png b/extracted/Texture2D/char_dog2_Outline.png new file mode 100644 index 0000000..7ef2f4e --- /dev/null +++ b/extracted/Texture2D/char_dog2_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2291c63a254773bd3b09358f88060f7c55bbca693f0336e5404b9df617d818a8 +size 54361 diff --git a/extracted/Texture2D/char_dog2_Outline.png.import b/extracted/Texture2D/char_dog2_Outline.png.import new file mode 100644 index 0000000..759a8a3 --- /dev/null +++ b/extracted/Texture2D/char_dog2_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnag64pv54ijo" +path="res://.godot/imported/char_dog2_Outline.png-605cd4cf1f2f53a963720a3340c32557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_dog2_Outline.png" +dest_files=["res://.godot/imported/char_dog2_Outline.png-605cd4cf1f2f53a963720a3340c32557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_dog_outline.png b/extracted/Texture2D/char_dog_outline.png new file mode 100644 index 0000000..f561c00 --- /dev/null +++ b/extracted/Texture2D/char_dog_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a97a9b7156741e83064ae04cb63e5a006e6f21db675b9c3dc64b249b35baf3 +size 42063 diff --git a/extracted/Texture2D/char_dog_outline.png.import b/extracted/Texture2D/char_dog_outline.png.import new file mode 100644 index 0000000..350da6e --- /dev/null +++ b/extracted/Texture2D/char_dog_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qs4g8dpdj2ux" +path="res://.godot/imported/char_dog_outline.png-13922d2110cbf1167844c8b9fb016c57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_dog_outline.png" +dest_files=["res://.godot/imported/char_dog_outline.png-13922d2110cbf1167844c8b9fb016c57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_explorer2_outline.png b/extracted/Texture2D/char_explorer2_outline.png new file mode 100644 index 0000000..0913d5f --- /dev/null +++ b/extracted/Texture2D/char_explorer2_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a413768c0af0f7c5330ce4ba0bd3a67ca8ec06e4cb478234c628350ded7439 +size 128992 diff --git a/extracted/Texture2D/char_explorer2_outline.png.import b/extracted/Texture2D/char_explorer2_outline.png.import new file mode 100644 index 0000000..fb7c5b2 --- /dev/null +++ b/extracted/Texture2D/char_explorer2_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ifd8t5tmmvi" +path="res://.godot/imported/char_explorer2_outline.png-7e4012899aa47f87f73e0d31a7dffd0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_explorer2_outline.png" +dest_files=["res://.godot/imported/char_explorer2_outline.png-7e4012899aa47f87f73e0d31a7dffd0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_fairy2_Outline.png b/extracted/Texture2D/char_fairy2_Outline.png new file mode 100644 index 0000000..b3c3945 --- /dev/null +++ b/extracted/Texture2D/char_fairy2_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188f73117444085738ce3590cec112ca5c6768eeb71552b7cbd8243fbee34de1 +size 179247 diff --git a/extracted/Texture2D/char_fairy2_Outline.png.import b/extracted/Texture2D/char_fairy2_Outline.png.import new file mode 100644 index 0000000..e14c2b7 --- /dev/null +++ b/extracted/Texture2D/char_fairy2_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cunh8gf7soumi" +path="res://.godot/imported/char_fairy2_Outline.png-5a4077e944a046e83254ff6a93175e17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_fairy2_Outline.png" +dest_files=["res://.godot/imported/char_fairy2_Outline.png-5a4077e944a046e83254ff6a93175e17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_fairy_outline.png b/extracted/Texture2D/char_fairy_outline.png new file mode 100644 index 0000000..09c7d01 --- /dev/null +++ b/extracted/Texture2D/char_fairy_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080e376e0d80fd7591470fd31fbce4e14161abe24d07f62b64820d4554ec49df +size 174128 diff --git a/extracted/Texture2D/char_fairy_outline.png.import b/extracted/Texture2D/char_fairy_outline.png.import new file mode 100644 index 0000000..6dfe240 --- /dev/null +++ b/extracted/Texture2D/char_fairy_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cip6eufo5ji6h" +path="res://.godot/imported/char_fairy_outline.png-0eb652ff3de4a5094f72a00b0a3e9247.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_fairy_outline.png" +dest_files=["res://.godot/imported/char_fairy_outline.png-0eb652ff3de4a5094f72a00b0a3e9247.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_fisherman_outline.png b/extracted/Texture2D/char_fisherman_outline.png new file mode 100644 index 0000000..68b66bd --- /dev/null +++ b/extracted/Texture2D/char_fisherman_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aeb4bfbfbc2fa96ab634f7e8bba6054d98ef64b2a5249d92bbd764d014a93ee +size 425547 diff --git a/extracted/Texture2D/char_fisherman_outline.png.import b/extracted/Texture2D/char_fisherman_outline.png.import new file mode 100644 index 0000000..faedcb8 --- /dev/null +++ b/extracted/Texture2D/char_fisherman_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vmu1ffipd6qd" +path="res://.godot/imported/char_fisherman_outline.png-c2c33a30bafddbc9344c43258ba09630.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_fisherman_outline.png" +dest_files=["res://.godot/imported/char_fisherman_outline.png-c2c33a30bafddbc9344c43258ba09630.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_leñador_outline.png b/extracted/Texture2D/char_leñador_outline.png new file mode 100644 index 0000000..82f975b --- /dev/null +++ b/extracted/Texture2D/char_leñador_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2f4aab7d010f16c8d869f623501d9817654ed025c86238aad418cd067b8e2d +size 168683 diff --git a/extracted/Texture2D/char_leñador_outline.png.import b/extracted/Texture2D/char_leñador_outline.png.import new file mode 100644 index 0000000..4e4b37f --- /dev/null +++ b/extracted/Texture2D/char_leñador_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d25krefb27oea" +path="res://.godot/imported/char_leñador_outline.png-5f7478e269381262894f8e3b10546404.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_leñador_outline.png" +dest_files=["res://.godot/imported/char_leñador_outline.png-5f7478e269381262894f8e3b10546404.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Blue_Outline.png b/extracted/Texture2D/char_minifairy_Blue_Outline.png new file mode 100644 index 0000000..24d5b69 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Blue_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b463355c6d8f1b39dca66a20cc3af0c08aa881103c3b32a9c9de3cddeb385a5 +size 92678 diff --git a/extracted/Texture2D/char_minifairy_Blue_Outline.png.import b/extracted/Texture2D/char_minifairy_Blue_Outline.png.import new file mode 100644 index 0000000..99ffe82 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Blue_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coiawmrh3g0h" +path="res://.godot/imported/char_minifairy_Blue_Outline.png-e4b49d2778523209bbf2a7bb993f8f3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Blue_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Blue_Outline.png-e4b49d2778523209bbf2a7bb993f8f3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Coro_Outline.png b/extracted/Texture2D/char_minifairy_Coro_Outline.png new file mode 100644 index 0000000..3036c2b --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Coro_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9868e11c0cd81d40dcd949dd3156baa9fda5994277a6012ee3fcb46a0eb56c +size 95915 diff --git a/extracted/Texture2D/char_minifairy_Coro_Outline.png.import b/extracted/Texture2D/char_minifairy_Coro_Outline.png.import new file mode 100644 index 0000000..5384dbc --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Coro_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw5xf1uwo24p2" +path="res://.godot/imported/char_minifairy_Coro_Outline.png-4c9b8ab07b661c34d85612a0b1832a95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Coro_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Coro_Outline.png-4c9b8ab07b661c34d85612a0b1832a95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Cynan_Outline.png b/extracted/Texture2D/char_minifairy_Cynan_Outline.png new file mode 100644 index 0000000..1251d5d --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Cynan_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72bc770433ff4525594d2428225985931ae2f509b1385085226fc3d4ce7eea47 +size 92197 diff --git a/extracted/Texture2D/char_minifairy_Cynan_Outline.png.import b/extracted/Texture2D/char_minifairy_Cynan_Outline.png.import new file mode 100644 index 0000000..f2a3301 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Cynan_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bklfxllxi3y4d" +path="res://.godot/imported/char_minifairy_Cynan_Outline.png-e6d3628fe29d34c5a72f9d2941b587c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Cynan_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Cynan_Outline.png-e6d3628fe29d34c5a72f9d2941b587c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Green_Outline.png b/extracted/Texture2D/char_minifairy_Green_Outline.png new file mode 100644 index 0000000..3983dee --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Green_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acef4f3e49c97450414678bafb0128d84c4f856f91a0f1ea708d665b2223024a +size 92095 diff --git a/extracted/Texture2D/char_minifairy_Green_Outline.png.import b/extracted/Texture2D/char_minifairy_Green_Outline.png.import new file mode 100644 index 0000000..e6c1093 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Green_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8mjxhgidgycr" +path="res://.godot/imported/char_minifairy_Green_Outline.png-1e17998f85cc81a0c0e6ac5b1c21d112.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Green_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Green_Outline.png-1e17998f85cc81a0c0e6ac5b1c21d112.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Orange_Outline.png b/extracted/Texture2D/char_minifairy_Orange_Outline.png new file mode 100644 index 0000000..516a462 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Orange_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e562e950d0c500587a1852741a815004bbbf1415892f5297f8958e25f00f1e9 +size 93038 diff --git a/extracted/Texture2D/char_minifairy_Orange_Outline.png.import b/extracted/Texture2D/char_minifairy_Orange_Outline.png.import new file mode 100644 index 0000000..458d488 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Orange_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyhqvds8qxm4u" +path="res://.godot/imported/char_minifairy_Orange_Outline.png-ec0c745f5f1c6c48dd3c0efb29f734af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Orange_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Orange_Outline.png-ec0c745f5f1c6c48dd3c0efb29f734af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Pink_Outline.png b/extracted/Texture2D/char_minifairy_Pink_Outline.png new file mode 100644 index 0000000..f4dc098 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Pink_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3320725903ae76cf086b32735f87001358623bfb69fea95afd5c47c0ede3d8 +size 92634 diff --git a/extracted/Texture2D/char_minifairy_Pink_Outline.png.import b/extracted/Texture2D/char_minifairy_Pink_Outline.png.import new file mode 100644 index 0000000..4dff8f1 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Pink_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6pmqcooqkllv" +path="res://.godot/imported/char_minifairy_Pink_Outline.png-9a245682c24c4f7daa703d6e98344f3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Pink_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Pink_Outline.png-9a245682c24c4f7daa703d6e98344f3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Purple_Outline.png b/extracted/Texture2D/char_minifairy_Purple_Outline.png new file mode 100644 index 0000000..1b23909 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Purple_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5046a940ea9898d96439ba15c790bbc04f4df64ad036122f3ede048836af8e +size 92713 diff --git a/extracted/Texture2D/char_minifairy_Purple_Outline.png.import b/extracted/Texture2D/char_minifairy_Purple_Outline.png.import new file mode 100644 index 0000000..6c59295 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Purple_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfybd0lng1t51" +path="res://.godot/imported/char_minifairy_Purple_Outline.png-e4b0709be4fc858d56f8937708d34825.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Purple_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Purple_Outline.png-e4b0709be4fc858d56f8937708d34825.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_minifairy_Yellow_Outline.png b/extracted/Texture2D/char_minifairy_Yellow_Outline.png new file mode 100644 index 0000000..9b45ca6 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Yellow_Outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f900a1b6858d6f51fe46a25dcd1a813c58a4d3baa2714f7593ea79113e005b04 +size 96413 diff --git a/extracted/Texture2D/char_minifairy_Yellow_Outline.png.import b/extracted/Texture2D/char_minifairy_Yellow_Outline.png.import new file mode 100644 index 0000000..dc4a7d4 --- /dev/null +++ b/extracted/Texture2D/char_minifairy_Yellow_Outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bryrg8pawhxoe" +path="res://.godot/imported/char_minifairy_Yellow_Outline.png-42fd118c73814b6b840e2a89c9e68225.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_minifairy_Yellow_Outline.png" +dest_files=["res://.godot/imported/char_minifairy_Yellow_Outline.png-42fd118c73814b6b840e2a89c9e68225.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_mouse1_outline.png b/extracted/Texture2D/char_mouse1_outline.png new file mode 100644 index 0000000..8aff74c --- /dev/null +++ b/extracted/Texture2D/char_mouse1_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4368d3695cf800ce02eea2282ceda3dd679dc3958429b2e1da0c16188fa6416e +size 152203 diff --git a/extracted/Texture2D/char_mouse1_outline.png.import b/extracted/Texture2D/char_mouse1_outline.png.import new file mode 100644 index 0000000..7c61eec --- /dev/null +++ b/extracted/Texture2D/char_mouse1_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfpm228uqw7t" +path="res://.godot/imported/char_mouse1_outline.png-2f1595777c51b722add6791777363e67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_mouse1_outline.png" +dest_files=["res://.godot/imported/char_mouse1_outline.png-2f1595777c51b722add6791777363e67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_mouse2_outline.png b/extracted/Texture2D/char_mouse2_outline.png new file mode 100644 index 0000000..9541f76 --- /dev/null +++ b/extracted/Texture2D/char_mouse2_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d739230dbc51f9ba2372ef46f194b99bb04407bed5682a47f8efcd063a0c937 +size 155666 diff --git a/extracted/Texture2D/char_mouse2_outline.png.import b/extracted/Texture2D/char_mouse2_outline.png.import new file mode 100644 index 0000000..b184adc --- /dev/null +++ b/extracted/Texture2D/char_mouse2_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clyy23dq5bxvm" +path="res://.godot/imported/char_mouse2_outline.png-339240eef3cd9d389205c77f78648e58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_mouse2_outline.png" +dest_files=["res://.godot/imported/char_mouse2_outline.png-339240eef3cd9d389205c77f78648e58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_oldman_outline.png b/extracted/Texture2D/char_oldman_outline.png new file mode 100644 index 0000000..92e543d --- /dev/null +++ b/extracted/Texture2D/char_oldman_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b621fea568f085c50043364a05b0e6362f672c7557cb31c3a9f43888b2c9ed3 +size 125153 diff --git a/extracted/Texture2D/char_oldman_outline.png.import b/extracted/Texture2D/char_oldman_outline.png.import new file mode 100644 index 0000000..8679949 --- /dev/null +++ b/extracted/Texture2D/char_oldman_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pkf6cvgm6htf" +path="res://.godot/imported/char_oldman_outline.png-1a4c0fcf840de8d04432c5e142cdbe18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_oldman_outline.png" +dest_files=["res://.godot/imported/char_oldman_outline.png-1a4c0fcf840de8d04432c5e142cdbe18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/char_worker_outline.png b/extracted/Texture2D/char_worker_outline.png new file mode 100644 index 0000000..73cc105 --- /dev/null +++ b/extracted/Texture2D/char_worker_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ea6d6e526b5fe8a356b64272b1ce6768785994dadad35127a8a645bca7c717 +size 156163 diff --git a/extracted/Texture2D/char_worker_outline.png.import b/extracted/Texture2D/char_worker_outline.png.import new file mode 100644 index 0000000..6f65ff0 --- /dev/null +++ b/extracted/Texture2D/char_worker_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da1ta3t6u2u33" +path="res://.godot/imported/char_worker_outline.png-a0f0d446072017e6d4b6c65825129d97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/char_worker_outline.png" +dest_files=["res://.godot/imported/char_worker_outline.png-a0f0d446072017e6d4b6c65825129d97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/hook.png b/extracted/Texture2D/hook.png new file mode 100644 index 0000000..73686f5 --- /dev/null +++ b/extracted/Texture2D/hook.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db7f4df15dfa3e64ef943e5c54133c7a37e8f48d6409146dd832fdf64dd9444 +size 22974 diff --git a/extracted/Texture2D/hook.png.import b/extracted/Texture2D/hook.png.import new file mode 100644 index 0000000..90824f6 --- /dev/null +++ b/extracted/Texture2D/hook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcutg4qbr042p" +path="res://.godot/imported/hook.png-f028a464623b64fd5691b7ac645f9848.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/hook.png" +dest_files=["res://.godot/imported/hook.png-f028a464623b64fd5691b7ac645f9848.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/horse_brotherhood_outline.png b/extracted/Texture2D/horse_brotherhood_outline.png new file mode 100644 index 0000000..e07e5b4 --- /dev/null +++ b/extracted/Texture2D/horse_brotherhood_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9d2d5b465feedf3e8c79a2c3f938786e16182a84ed52717304801d271e847c +size 157693 diff --git a/extracted/Texture2D/horse_brotherhood_outline.png.import b/extracted/Texture2D/horse_brotherhood_outline.png.import new file mode 100644 index 0000000..374d344 --- /dev/null +++ b/extracted/Texture2D/horse_brotherhood_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n4jrcimta3qs" +path="res://.godot/imported/horse_brotherhood_outline.png-b36c0fd6a534a80b080bc56d0323cbb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/horse_brotherhood_outline.png" +dest_files=["res://.godot/imported/horse_brotherhood_outline.png-b36c0fd6a534a80b080bc56d0323cbb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/item_fishingrod.png b/extracted/Texture2D/item_fishingrod.png new file mode 100644 index 0000000..4a3ea9f --- /dev/null +++ b/extracted/Texture2D/item_fishingrod.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebaf852dd4e49890a18d93db69a56c04e0d02abb1dbf5b2de933923f375a93e5 +size 36778 diff --git a/extracted/Texture2D/item_fishingrod.png.import b/extracted/Texture2D/item_fishingrod.png.import new file mode 100644 index 0000000..b0bea69 --- /dev/null +++ b/extracted/Texture2D/item_fishingrod.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr4rh82eo561" +path="res://.godot/imported/item_fishingrod.png-12d2a56b5deafd71d3344b2751a3f520.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/item_fishingrod.png" +dest_files=["res://.godot/imported/item_fishingrod.png-12d2a56b5deafd71d3344b2751a3f520.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/map #62444.png b/extracted/Texture2D/map #62444.png new file mode 100644 index 0000000..c3c8e39 --- /dev/null +++ b/extracted/Texture2D/map #62444.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d09c8547d4314337819685db713eafa47264c13d5dcb0f19fdc9ed0ec74f123 +size 60955 diff --git a/extracted/Texture2D/map #62444.png.import b/extracted/Texture2D/map #62444.png.import new file mode 100644 index 0000000..c0118ce --- /dev/null +++ b/extracted/Texture2D/map #62444.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cialwo0xr1k50" +path="res://.godot/imported/map #62444.png-a122d9832538f8c3d79a6b08a31d2f3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/map #62444.png" +dest_files=["res://.godot/imported/map #62444.png-a122d9832538f8c3d79a6b08a31d2f3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/molino_Sheet.png b/extracted/Texture2D/molino_Sheet.png new file mode 100644 index 0000000..0f5d4c7 --- /dev/null +++ b/extracted/Texture2D/molino_Sheet.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab8c9a849b0ab6470e4bcc8d88dfd86e372ea92fad8e69ce61700e07bd49480 +size 74583 diff --git a/extracted/Texture2D/molino_Sheet.png.import b/extracted/Texture2D/molino_Sheet.png.import new file mode 100644 index 0000000..77e194d --- /dev/null +++ b/extracted/Texture2D/molino_Sheet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjh45xpv36ou6" +path="res://.godot/imported/molino_Sheet.png-3b2555ae277d1adb97b234b15cf00258.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/molino_Sheet.png" +dest_files=["res://.godot/imported/molino_Sheet.png-3b2555ae277d1adb97b234b15cf00258.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/sloth_brotherhood_outline.png b/extracted/Texture2D/sloth_brotherhood_outline.png new file mode 100644 index 0000000..61abf78 --- /dev/null +++ b/extracted/Texture2D/sloth_brotherhood_outline.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39af93eaf6c4493791bc295482a103d67306a0d9cb5afe239c4eedd205654a94 +size 127161 diff --git a/extracted/Texture2D/sloth_brotherhood_outline.png.import b/extracted/Texture2D/sloth_brotherhood_outline.png.import new file mode 100644 index 0000000..5d5f536 --- /dev/null +++ b/extracted/Texture2D/sloth_brotherhood_outline.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cugw6q0i71wmf" +path="res://.godot/imported/sloth_brotherhood_outline.png-0ba5d0e0dba162687ab5b957d7321580.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/sloth_brotherhood_outline.png" +dest_files=["res://.godot/imported/sloth_brotherhood_outline.png-0ba5d0e0dba162687ab5b957d7321580.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/Texture2D/smoke_05.png b/extracted/Texture2D/smoke_05.png new file mode 100644 index 0000000..787bcdc --- /dev/null +++ b/extracted/Texture2D/smoke_05.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff86585f1d304acb5ccf39f0aa02eeac10b80efdafccd248941d657887b68289 +size 147556 diff --git a/extracted/Texture2D/smoke_05.png.import b/extracted/Texture2D/smoke_05.png.import new file mode 100644 index 0000000..6318401 --- /dev/null +++ b/extracted/Texture2D/smoke_05.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgws2b7d0mpi6" +path="res://.godot/imported/smoke_05.png-44de986da520b385f2e943ad42b6eca1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://extracted/Texture2D/smoke_05.png" +dest_files=["res://.godot/imported/smoke_05.png-44de986da520b385f2e943ad42b6eca1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/extracted/VideoClip/ST_Cutscene1.m4v b/extracted/VideoClip/ST_Cutscene1.m4v new file mode 100644 index 0000000..72e4ff9 --- /dev/null +++ b/extracted/VideoClip/ST_Cutscene1.m4v @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9decec03e061d2e42a43454cba28eeefbcf329ccebd2826300ff42c07a6bfb38 +size 16435993 diff --git a/extracted/VideoClip/ST_Cutscene_Album_Full.m4v b/extracted/VideoClip/ST_Cutscene_Album_Full.m4v new file mode 100644 index 0000000..e21b36b --- /dev/null +++ b/extracted/VideoClip/ST_Cutscene_Album_Full.m4v @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f5c92da0dccae97bf409ec6b3f72fe0dc5bfeb9373a3acbff0add02c5efab8 +size 12405841 diff --git a/extracted/VideoClip/ST_Cutscene_Ending.m4v b/extracted/VideoClip/ST_Cutscene_Ending.m4v new file mode 100644 index 0000000..6481722 --- /dev/null +++ b/extracted/VideoClip/ST_Cutscene_Ending.m4v @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fd9b2d680ed01e9d54e683f8b0d4b12988e4c3ffac7d6657e012711032719f +size 11881701 diff --git a/maps/gym.tscn b/maps/gym.tscn index 95ff34f..89fc959 100644 --- a/maps/gym.tscn +++ b/maps/gym.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=6 format=3 uid="uid://btvda0p8fcpwn"] -[ext_resource type="PackedScene" uid="uid://0m1hk2nu4bps" path="res://player.tscn" id="1_mkpg2"] +[ext_resource type="PackedScene" uid="uid://0m1hk2nu4bps" path="res://core/player.tscn" id="1_mkpg2"] [ext_resource type="Texture2D" uid="uid://bh317u35svbha" path="res://extracted/Texture2D/Tree_Swamp_01_SPRT.png" id="2_hscig"] [sub_resource type="Environment" id="Environment_iaiy2"] diff --git a/maps/map1.tres b/maps/map1.tres new file mode 100644 index 0000000..e6ef048 --- /dev/null +++ b/maps/map1.tres @@ -0,0 +1,8 @@ +[gd_resource type="AtlasTexture" load_steps=2 format=3 uid="uid://cacwy4tka88k1"] + +[ext_resource type="Texture2D" uid="uid://bk87x1lpjog5j" path="res://textures/atlas/Floors_05_SPRT.png" id="1_vellv"] + +[resource] +atlas = ExtResource("1_vellv") +region = Rect2(0, 0, 1024, 992) +filter_clip = true diff --git a/maps/map1.tscn b/maps/map1.tscn new file mode 100644 index 0000000..665aa0b --- /dev/null +++ b/maps/map1.tscn @@ -0,0 +1,35 @@ +[gd_scene load_steps=4 format=3 uid="uid://wlqsvbqpcbh"] + +[ext_resource type="Texture2D" uid="uid://cacwy4tka88k1" path="res://maps/map1.tres" id="1_pt5vq"] +[ext_resource type="Texture2D" uid="uid://db1k2fu0p2ek8" path="res://extracted/Sprite/Floors_11_SPRT_0.png" id="2_ha1lv"] +[ext_resource type="Texture2D" uid="uid://c5bd2ta3esnib" path="res://extracted/4010-A Tiny Sticker Tale review pic 1.jpg" id="3_yh2wy"] + +[node name="Map1" type="Node2D"] + +[node name="Floors05Sprt" type="Sprite2D" parent="."] +scale = Vector2(6, 6) +texture = ExtResource("1_pt5vq") +region_rect = Rect2(0, 0, 1024, 992) + +[node name="StaticBody2D" type="StaticBody2D" parent="Floors05Sprt"] + +[node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Floors05Sprt/StaticBody2D"] +visible = false +polygon = PackedVector2Array(-450, 68.3333, -446.167, 162.667, 194.833, 162.667, 211.833, 162.667, 208.167, -35.3333, 462.667, -31.5, 458.833, -131.5, 191.167, -129.667, 191.167, 66.5) + +[node name="CollisionPolygon2D2" type="CollisionPolygon2D" parent="Floors05Sprt/StaticBody2D"] +visible = false +build_mode = 1 +polygon = PackedVector2Array(-448, -432.5, 458, -430.833, 455.5, 196.833, 490.333, 198, 497, 305, 453.833, 307.333, 456.167, 411, -448, 407.5) + +[node name="Sprite2D" type="Sprite2D" parent="Floors05Sprt"] +position = Vector2(477.167, 300.333) +scale = Vector2(0.192195, 0.20323) +texture = ExtResource("2_ha1lv") + +[node name="4010-aTinyStickerTaleReviewPic1" type="Sprite2D" parent="."] +visible = false +top_level = true +position = Vector2(78, -148) +scale = Vector2(6.15, 6.15) +texture = ExtResource("3_yh2wy") diff --git a/maps/map8D66.tmp b/maps/map8D66.tmp new file mode 100644 index 0000000..112f46f --- /dev/null +++ b/maps/map8D66.tmp @@ -0,0 +1,12 @@ +[gd_scene load_steps=3 format=3 uid="uid://d382cexpr4075"] + +[ext_resource type="Script" path="res://core/sceneInstance.gd" id="1_p0vo1"] +[ext_resource type="PackedScene" uid="uid://wlqsvbqpcbh" path="res://maps/map1.tscn" id="2_qgqfi"] + +[node name="MapManager" type="Node2D"] +script = ExtResource("1_p0vo1") +InitialMap = ExtResource("2_qgqfi") + +[node name="CurrentScene" type="Node2D" parent="."] + +[connection signal="ready" from="." to="." method="_on_ready"] diff --git a/maps/mapF9BA.tmp b/maps/mapF9BA.tmp new file mode 100644 index 0000000..112f46f --- /dev/null +++ b/maps/mapF9BA.tmp @@ -0,0 +1,12 @@ +[gd_scene load_steps=3 format=3 uid="uid://d382cexpr4075"] + +[ext_resource type="Script" path="res://core/sceneInstance.gd" id="1_p0vo1"] +[ext_resource type="PackedScene" uid="uid://wlqsvbqpcbh" path="res://maps/map1.tscn" id="2_qgqfi"] + +[node name="MapManager" type="Node2D"] +script = ExtResource("1_p0vo1") +InitialMap = ExtResource("2_qgqfi") + +[node name="CurrentScene" type="Node2D" parent="."] + +[connection signal="ready" from="." to="." method="_on_ready"] diff --git a/maps/mapManager.tscn b/maps/mapManager.tscn new file mode 100644 index 0000000..95d1b6f --- /dev/null +++ b/maps/mapManager.tscn @@ -0,0 +1,14 @@ +[gd_scene load_steps=4 format=3 uid="uid://d382cexpr4075"] + +[ext_resource type="Script" path="res://core/sceneInstance.gd" id="1_p0vo1"] +[ext_resource type="PackedScene" uid="uid://0m1hk2nu4bps" path="res://core/player.tscn" id="2_fyjh8"] +[ext_resource type="PackedScene" uid="uid://wlqsvbqpcbh" path="res://maps/map1.tscn" id="2_qgqfi"] + +[node name="MapManager" type="Node2D"] +script = ExtResource("1_p0vo1") +InitialPlayer = ExtResource("2_fyjh8") +InitialMap = ExtResource("2_qgqfi") + +[node name="CurrentScene" type="Node2D" parent="."] + +[connection signal="ready" from="." to="." method="_on_ready"] diff --git a/player.gd b/player.gd deleted file mode 100644 index 2bc4517..0000000 --- a/player.gd +++ /dev/null @@ -1,37 +0,0 @@ -extends CharacterBody2D - - -const SPEED = 500.0 - - - -func _physics_process(delta): - - -#region Movement - # Get the input direction and handle the movement/deceleration. - # As good practice, you should replace UI actions with custom gameplay actions. - var directionX = Input.get_axis("move_left", "move_right") - var directionY = Input.get_axis("move_up", "move_down") - - if directionX : - velocity.x = directionX * SPEED - else: - velocity.x = move_toward(velocity.x, 0, SPEED) - if directionY: - velocity.y = directionY * SPEED - else: - velocity.y = move_toward(velocity.y, 0, SPEED) -#endregion - -#region Animation - - var WalkLeft = directionX < 0 or (directionY < 0 and directionY != 0) - var Idle = (velocity.x == 0 and velocity.y == 0) - $AnimationTree.set("parameters/Locomotion/conditions/Idle",Idle) - $AnimationTree.set("parameters/Locomotion/conditions/WalkLeft",WalkLeft and !Idle ) - $AnimationTree.set("parameters/Locomotion/conditions/WalkRight",!WalkLeft and !Idle) - -#endregion - - move_and_slide() diff --git a/player/animations/WalkLeft.res b/player/animations/WalkLeft.res deleted file mode 100644 index 2d999d1..0000000 --- a/player/animations/WalkLeft.res +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:07d8882c60e6f472e0e811e3db4c12c02ebb3e27c8040eeae69c34e826815c74 -size 1755 diff --git a/player/animations/WalkRight.res b/player/animations/WalkRight.res deleted file mode 100644 index 3b2d6ce..0000000 --- a/player/animations/WalkRight.res +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d4577879ae4ddd28b842ee1565b59f97c0a2db70cbcd1dab6f1b2194a9e132d -size 1753 diff --git a/player/animations/idle.res b/player/animations/idle.res deleted file mode 100644 index 93b2d04..0000000 --- a/player/animations/idle.res +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cd989c7127fc633c1c5c62b87f50cb9f974338bdd42209c40af92975952791f -size 1969 diff --git a/player/currentHat.tres b/player/currentHat.tres deleted file mode 100644 index 5a78399..0000000 --- a/player/currentHat.tres +++ /dev/null @@ -1,6 +0,0 @@ -[gd_resource type="CanvasTexture" load_steps=2 format=3 uid="uid://5qixrbrclydr"] - -[ext_resource type="Texture2D" uid="uid://0m4sejstlmy7" path="res://extracted/Texture2D/Hat Glasses.png" id="1_ogipp"] - -[resource] -diffuse_texture = ExtResource("1_ogipp") diff --git a/project.godot b/project.godot index 53b0d25..9b267cc 100644 --- a/project.godot +++ b/project.godot @@ -12,7 +12,7 @@ config_version=5 config/name="StickerClone" config/version="0.1" -run/main_scene="res://maps/gym.tscn" +run/main_scene="res://maps/mapManager.tscn" config/features=PackedStringArray("4.2", "Mobile") config/icon="res://extracted/Texture2D/Map.png" @@ -21,6 +21,10 @@ config/icon="res://extracted/Texture2D/Map.png" version_control/plugin_name="GitPlugin" version_control/autoload_on_startup=true +[editor_plugins] + +enabled=PackedStringArray("res://addons/Todo_Manager/plugin.cfg") + [input] move_up={ diff --git a/shaders/shaderMaterial_Outline.tres b/shaders/shaderMaterial_Outline.tres new file mode 100644 index 0000000..695c9ff --- /dev/null +++ b/shaders/shaderMaterial_Outline.tres @@ -0,0 +1,15 @@ +[gd_resource type="ShaderMaterial" load_steps=2 format=3 uid="uid://d311puikrpgel"] + +[ext_resource type="Shader" path="res://shaders/shader_outline3.gdshader" id="1_4ciqw"] + +[resource] +shader = ExtResource("1_4ciqw") +shader_parameter/thickness = 10.0 +shader_parameter/ring_count = 40 +shader_parameter/ring_offset = 1.0 +shader_parameter/outline_color = Color(1, 1, 1, 1) +shader_parameter/border_clipping_fix = true +shader_parameter/aspect_ratio = 1.0 +shader_parameter/square_border = false +shader_parameter/offset = null +shader_parameter/max_or_add = true diff --git a/shaders/shader_color_replacer.gdshader b/shaders/shader_color_replacer.gdshader new file mode 100644 index 0000000..17cca8d --- /dev/null +++ b/shaders/shader_color_replacer.gdshader @@ -0,0 +1,43 @@ +shader_type canvas_item; + +//Hat +uniform vec4 hat_color : source_color; +uniform vec4 hat_replace_color : source_color; +uniform float hat_color_threshold : hint_range(0.0, 1.0, 0.001); + +//Hair +uniform vec4 hair_color : source_color; +uniform vec4 hair_replace_color : source_color; +uniform float hair_color_threshold : hint_range(0.0, 1.0, 0.001); + +//Skin +uniform vec4 skin_color : source_color; +uniform vec4 skin_replace_color : source_color; +uniform float skin_color_threshold : hint_range(0.0, 1.0, 0.001); + +//Clothes +uniform vec4 clothes_color : source_color; +uniform vec4 clothes_replace_color : source_color; +uniform float clothes_color_threshold : hint_range(0.0, 1.0, 0.001); + +void fragment() { + // Called for every pixel the material is visible on. + vec4 tex_color = texture(TEXTURE, UV); + + float hat_distance = length(tex_color.rgb - hat_color.rgb); + float hair_distance = length(tex_color.rgb - hair_color.rgb); + float skin_distance = length(tex_color.rgb - skin_color.rgb); + float clothes_distance = length(tex_color.rgb - clothes_color.rgb); + + if(hat_distance < hat_color_threshold){ + tex_color = hat_replace_color; + }else if(hair_distance < hair_color_threshold){ + tex_color = hair_replace_color; + }else if(skin_distance < skin_color_threshold){ + tex_color = skin_replace_color; + }else if(clothes_distance < clothes_color_threshold){ + tex_color = clothes_replace_color; + } + + COLOR = tex_color; +} \ No newline at end of file diff --git a/shaders/shader_outline.gdshader b/shaders/shader_outline.gdshader new file mode 100644 index 0000000..5372eca --- /dev/null +++ b/shaders/shader_outline.gdshader @@ -0,0 +1,53 @@ +shader_type canvas_item; + +uniform vec4 line_color : source_color = vec4(1); +uniform float line_thickness : hint_range(0, 20) = 0.0; +uniform bool add_margins = true; + +void vertex() { + if (add_margins) { + VERTEX += (UV * 2.0 - 1.0) * line_thickness; + } +} + +void fragment() { + vec2 uv = UV; + + if (add_margins) { + vec2 texture_pixel_size = vec2(1.0) / (vec2(1.0) / TEXTURE_PIXEL_SIZE + vec2(line_thickness * 2.0)); + + uv = (uv - texture_pixel_size * line_thickness) * TEXTURE_PIXEL_SIZE / texture_pixel_size; + + if (uv != clamp(uv, vec2(0.0), vec2(1.0))) { + COLOR.a = 0.0; + } else { + COLOR = texture(TEXTURE, uv); + } + } else { + COLOR = texture(TEXTURE, uv); + } + + vec2 size = TEXTURE_PIXEL_SIZE * line_thickness; + + if (line_thickness < 0.1) { + vec4 color = texture(TEXTURE, uv); + COLOR = color; + } else { + float outline = texture(TEXTURE, uv + vec2(-size.x, 0)).a; + outline += texture(TEXTURE, uv + vec2(0, size.y)).a; + outline += texture(TEXTURE, uv + vec2(size.x, 0)).a; + outline += texture(TEXTURE, uv + vec2(0, -size.y)).a; + outline += texture(TEXTURE, uv + vec2(-size.x * 0.866, size.y * 0.5)).a; + outline += texture(TEXTURE, uv + vec2(-size.x * 0.5, size.y * 0.866)).a; + outline += texture(TEXTURE, uv + vec2(size.x * 0.866, size.y * 0.5)).a; + outline += texture(TEXTURE, uv + vec2(size.x * 0.5, size.y * 0.866)).a; + outline += texture(TEXTURE, uv + vec2(-size.x * 0.866, -size.y * 0.5)).a; + outline += texture(TEXTURE, uv + vec2(-size.x * 0.5, -size.y * 0.866)).a; + outline += texture(TEXTURE, uv + vec2(size.x * 0.866, -size.y * 0.5)).a; + outline += texture(TEXTURE, uv + vec2(size.x * 0.5, -size.y * 0.866)).a; + outline = min(outline, 1.0); + + vec4 color = texture(TEXTURE, uv); + COLOR = mix(color, line_color, outline - color.a); + } +} \ No newline at end of file diff --git a/shaders/shader_outline2.gdshader b/shaders/shader_outline2.gdshader new file mode 100644 index 0000000..303826a --- /dev/null +++ b/shaders/shader_outline2.gdshader @@ -0,0 +1,22 @@ +shader_type canvas_item; + +uniform vec4 line_color : source_color = vec4(1.0); +uniform float line_thickness : hint_range(0, 10) = 1.0; + +const vec2 OFFSETS[8] = { + vec2(-1, -1), vec2(-1, 0), vec2(-1, 1), vec2(0, -1), vec2(0, 1), + vec2(1, -1), vec2(1, 0), vec2(1, 1) +}; + +void fragment() { + vec2 size = TEXTURE_PIXEL_SIZE * line_thickness; + float outline = 0.0; + + for (int i = 0; i < OFFSETS.length(); i++) { + outline += texture(TEXTURE, UV + size * OFFSETS[i]).a; + } + outline = min(outline, 1.0); + + vec4 color = texture(TEXTURE, UV); + COLOR = mix(color, line_color, outline - color.a); +} \ No newline at end of file diff --git a/shaders/shader_outline3.gdshader b/shaders/shader_outline3.gdshader new file mode 100644 index 0000000..d8ac7b9 --- /dev/null +++ b/shaders/shader_outline3.gdshader @@ -0,0 +1,69 @@ +shader_type canvas_item; +render_mode unshaded; + +uniform float thickness : hint_range(0.0, 100.0); +uniform int ring_count : hint_range(1,128) = 16; +uniform float ring_offset : hint_range(0.0, 1.0, 0.01); +uniform vec4 outline_color : source_color; +uniform bool border_clipping_fix = true; +uniform float aspect_ratio : hint_range(0.1, 10.0, 0.01) = 1.0; +uniform bool square_border = false; +uniform vec2 offset; +uniform bool max_or_add = false; + +void vertex(){ + if (border_clipping_fix){ + vec2 o = (UV * 2.0 - 1.0); + VERTEX += o * thickness - offset; + VERTEX.x *= 1.0 + (aspect_ratio-1.0) * (thickness * TEXTURE_PIXEL_SIZE.x) * 2.0; + } +} + +vec2 square(float i){ // samples a square pattern + i *= 2.0; + return (vec2( + clamp(abs(mod(i,2.0)-1.0),0.25,0.75), + clamp(abs(mod(i+0.5,2.0)-1.0),0.25,0.75) + )-0.5)*4.0; +} + +vec4 tex(sampler2D sampler, vec2 uv){ + vec4 clr; + if (uv.x > 0.0 && uv.y > 0.0 && uv.x < 1.0 && uv.y < 1.0){ // bleeding texture sampling fix + clr = texture(sampler, uv); + }else{clr = vec4(0.0);} + return clr; +} + +void fragment(){ + vec2 o = offset / vec2(textureSize(TEXTURE, 0)); + vec2 uv = UV; + uv -= vec2(0.5); + if (border_clipping_fix){ + uv.x *= 1.0 + (aspect_ratio-1.0) * thickness * TEXTURE_PIXEL_SIZE.x * 2.0; + uv *= (1.0 + (thickness * TEXTURE_PIXEL_SIZE * 2.0)); + uv -= o; + } + uv += vec2(0.5); + vec2 size = vec2(thickness) / vec2(textureSize(TEXTURE, 0)); + + vec4 sprite_color = tex(TEXTURE, uv); + + float alpha = sprite_color.a; + if (square_border){ + for(int i=0;i