Character Roll prototype

This commit is contained in:
2024-06-11 10:23:43 -04:00
parent cdbba45795
commit 4312c044d3
210 changed files with 3633 additions and 180 deletions

13
Boss/bossData.json Normal file
View File

@@ -0,0 +1,13 @@
{
"bosses": [
{
"name": "Ice Giant",
"description": "The guardian of the Ice Caves",
"totalHealth": 1000,
"minDPS": 1,
"minClickDmg": 1,
"isAvailable": true,
"texturePath": "res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_1.png"
}
]
}

39
Boss/bossDatabase.gd Normal file
View File

@@ -0,0 +1,39 @@
# BossDatabase.gd
extends Node
var boss_data = {}
# Called when the node enters the scene tree for the first time.
func _ready():
load_boss_data()
# Function to load character data from the JSON file
func load_boss_data():
#var file = FileAccess.open("res://Boss/bossData.json", FileAccess.READ)
var file = FileAccess.open("user://Boss/bossData.json", FileAccess.READ)
if file:
var json_text = file.get_as_text()
#print (json_text)
file.close()
var json = JSON.new()
var json_result = json.parse(json_text)
#print (json_result)
if json_result == OK:
boss_data = json.get_data()
print("Boss data loaded successfully.")
#print(character_data)
else:
print("Failed to parse JSON: ", json_result.error_string)
else:
print("Boss data file not found.")
# Function to get a character by name
func get_boss(name: String) -> Dictionary:
for boss in boss_data.bosses:
if boss.name == name:
return boss
return {}

View File

@@ -7,6 +7,12 @@ var currentMemberSelected : int = 0
#Tracks which screens are visible #Tracks which screens are visible
var teamScreenVisible : bool = false var teamScreenVisible : bool = false
var teamSelectionVisible : bool = false var teamSelectionVisible : bool = false
var bossScreenVisible : bool = false
#This changed for some reason?
var teamScreenPath: String = "/root/@Control@14/UI/AspectRatioContainer"
var teamSelectionPath: String = "/root/@Control@14/UI/TeamSelection"
var bossSelectionPath: String = "/root/@Control@14/UI/BossFights"
#Tracks Damage Engine Numbers #Tracks Damage Engine Numbers
var globalDamage : int = 0 var globalDamage : int = 0
@@ -143,7 +149,6 @@ func set_damage_per_click(value: int):
func get_damage_per_click() -> int: func get_damage_per_click() -> int:
return globalDamagePerClick return globalDamagePerClick
var teamScreenPath: String = "/root/Root/UI/AspectRatioContainer"
var teamSelectionPath: String = "/root/Root/UI/TeamSelection"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dj0lh0ui2nd3m"
path="res://.godot/imported/1_atk_1.png-41b7ad7d422bb4c29aead3ff2e202ea8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_1.png"
dest_files=["res://.godot/imported/1_atk_1.png-41b7ad7d422bb4c29aead3ff2e202ea8.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d1hfrit8embb3"
path="res://.godot/imported/1_atk_10.png-bd8a74539dca1aab8299f0d010b35da7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_10.png"
dest_files=["res://.godot/imported/1_atk_10.png-bd8a74539dca1aab8299f0d010b35da7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dwuxp1xk6kv1n"
path="res://.godot/imported/1_atk_11.png-fd37494a788e072bbaeed5fc8f17c1f6.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_11.png"
dest_files=["res://.godot/imported/1_atk_11.png-fd37494a788e072bbaeed5fc8f17c1f6.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://be15hbn4jujei"
path="res://.godot/imported/1_atk_12.png-05f5e791547757f8db6a0a6511d57408.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_12.png"
dest_files=["res://.godot/imported/1_atk_12.png-05f5e791547757f8db6a0a6511d57408.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cqxqao5gcqir4"
path="res://.godot/imported/1_atk_13.png-0ecba4adbb23585892d8a1a11b762a62.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_13.png"
dest_files=["res://.godot/imported/1_atk_13.png-0ecba4adbb23585892d8a1a11b762a62.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://l5vherv7tnks"
path="res://.godot/imported/1_atk_14.png-bee2dc01b4f3faae76c20b1944b01337.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_14.png"
dest_files=["res://.godot/imported/1_atk_14.png-bee2dc01b4f3faae76c20b1944b01337.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bcb57pdj4v0yg"
path="res://.godot/imported/1_atk_2.png-771990d3ba237d6965c4e781294b3449.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_2.png"
dest_files=["res://.godot/imported/1_atk_2.png-771990d3ba237d6965c4e781294b3449.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://xejmf48ifvbs"
path="res://.godot/imported/1_atk_3.png-4ff1aa4768c0cdaf4f1e3766e284d013.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_3.png"
dest_files=["res://.godot/imported/1_atk_3.png-4ff1aa4768c0cdaf4f1e3766e284d013.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ce0pfjeoemybm"
path="res://.godot/imported/1_atk_4.png-5fa45b53f8223fffdd111161665e5bd4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_4.png"
dest_files=["res://.godot/imported/1_atk_4.png-5fa45b53f8223fffdd111161665e5bd4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlx3tagqiocky"
path="res://.godot/imported/1_atk_5.png-dd5437d052cd47e485b8b0b7fa882a93.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_5.png"
dest_files=["res://.godot/imported/1_atk_5.png-dd5437d052cd47e485b8b0b7fa882a93.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsn1drq5wnlee"
path="res://.godot/imported/1_atk_6.png-2e22d297f6e6c1d11a7235a3370d973c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_6.png"
dest_files=["res://.godot/imported/1_atk_6.png-2e22d297f6e6c1d11a7235a3370d973c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b5rj55fsq6rqj"
path="res://.godot/imported/1_atk_7.png-0667c0066fbb3c18394a7216d411b367.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_7.png"
dest_files=["res://.godot/imported/1_atk_7.png-0667c0066fbb3c18394a7216d411b367.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cx4elarh7gs13"
path="res://.godot/imported/1_atk_8.png-12b5fb7cc4da7c64521789ecae119ce3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_8.png"
dest_files=["res://.godot/imported/1_atk_8.png-12b5fb7cc4da7c64521789ecae119ce3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dwaa3xm07gnxx"
path="res://.godot/imported/1_atk_9.png-b2a9810b1b98ee9333ed754f87c9afe9.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/1_atk/1_atk_9.png"
dest_files=["res://.godot/imported/1_atk_9.png-b2a9810b1b98ee9333ed754f87c9afe9.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dj2ewo67ynm11"
path="res://.godot/imported/death_1.png-eca8c6686bf338d2f647e1ba0558f887.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_1.png"
dest_files=["res://.godot/imported/death_1.png-eca8c6686bf338d2f647e1ba0558f887.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://2qy3nmxko8vi"
path="res://.godot/imported/death_10.png-a4368e2bd683b6276841fdbff015c79d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_10.png"
dest_files=["res://.godot/imported/death_10.png-a4368e2bd683b6276841fdbff015c79d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bl6sto05dlcnh"
path="res://.godot/imported/death_11.png-2b8c8b63df0fa5928fae03f829003981.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_11.png"
dest_files=["res://.godot/imported/death_11.png-2b8c8b63df0fa5928fae03f829003981.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bh05qrp2tcji3"
path="res://.godot/imported/death_12.png-778b195719bb6582c776ffa98eddb0a3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_12.png"
dest_files=["res://.godot/imported/death_12.png-778b195719bb6582c776ffa98eddb0a3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ci3mq7tno61rt"
path="res://.godot/imported/death_13.png-1aa111abbcee22dd9aac144c1ee316a1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_13.png"
dest_files=["res://.godot/imported/death_13.png-1aa111abbcee22dd9aac144c1ee316a1.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cjdfvu2klyskw"
path="res://.godot/imported/death_14.png-c3ad75e8cf2e886ebef483dc3e317edc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_14.png"
dest_files=["res://.godot/imported/death_14.png-c3ad75e8cf2e886ebef483dc3e317edc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dkrogkc5uj4fv"
path="res://.godot/imported/death_15.png-ff466b048fdf5ef1a48fa131b0caa402.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_15.png"
dest_files=["res://.godot/imported/death_15.png-ff466b048fdf5ef1a48fa131b0caa402.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://r63c7527amdd"
path="res://.godot/imported/death_16.png-c6d09a57f02cff94081cdb21e095e9b7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_16.png"
dest_files=["res://.godot/imported/death_16.png-c6d09a57f02cff94081cdb21e095e9b7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bdjhbhu5rmbh3"
path="res://.godot/imported/death_2.png-9c906b82c55f3dfb1143868af1747748.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_2.png"
dest_files=["res://.godot/imported/death_2.png-9c906b82c55f3dfb1143868af1747748.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://67u4cdr2hpr5"
path="res://.godot/imported/death_3.png-31d121393c4ce091098592b25756c3b5.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_3.png"
dest_files=["res://.godot/imported/death_3.png-31d121393c4ce091098592b25756c3b5.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b3obnf7qmlgxh"
path="res://.godot/imported/death_4.png-5b54c085ad0eb9be65bf1b67e311f23f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_4.png"
dest_files=["res://.godot/imported/death_4.png-5b54c085ad0eb9be65bf1b67e311f23f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dorlrpkdl4wwd"
path="res://.godot/imported/death_5.png-41e97d2ee17dad6dbd6c73300ded9cfd.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_5.png"
dest_files=["res://.godot/imported/death_5.png-41e97d2ee17dad6dbd6c73300ded9cfd.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://lmtdg6j4m63a"
path="res://.godot/imported/death_6.png-74915ca0c23014aa1dc9c3c6fe33d111.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_6.png"
dest_files=["res://.godot/imported/death_6.png-74915ca0c23014aa1dc9c3c6fe33d111.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b2xryufukj87"
path="res://.godot/imported/death_7.png-aa210b4341ce8a7d819bc292b22a628e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_7.png"
dest_files=["res://.godot/imported/death_7.png-aa210b4341ce8a7d819bc292b22a628e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ka5lixk7vhrl"
path="res://.godot/imported/death_8.png-be7f72730d581f6b2b8b61036559f721.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_8.png"
dest_files=["res://.godot/imported/death_8.png-be7f72730d581f6b2b8b61036559f721.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d4lggwyaglsnp"
path="res://.godot/imported/death_9.png-04927f2c00bdf68e8893a981df0eb835.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/death/death_9.png"
dest_files=["res://.godot/imported/death_9.png-04927f2c00bdf68e8893a981df0eb835.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -2,16 +2,16 @@
importer="texture" importer="texture"
type="CompressedTexture2D" type="CompressedTexture2D"
uid="uid://b1kl4huy0vnin" uid="uid://b4qg3v2nrjfpn"
path="res://.godot/imported/#1 - Transparent Icons.png-075c51137bc59a17da3b30778a360723.ctex" path="res://.godot/imported/idle_1.png-934fbc54377bca6206775e6ab2764673.ctex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://Member/#1 - Transparent Icons.png" source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_1.png"
dest_files=["res://.godot/imported/#1 - Transparent Icons.png-075c51137bc59a17da3b30778a360723.ctex"] dest_files=["res://.godot/imported/idle_1.png-934fbc54377bca6206775e6ab2764673.ctex"]
[params] [params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b6rxf2g7ohyex"
path="res://.godot/imported/idle_2.png-b54d68c0d81854410b1415f57382673a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_2.png"
dest_files=["res://.godot/imported/idle_2.png-b54d68c0d81854410b1415f57382673a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ch51qryyjb1hm"
path="res://.godot/imported/idle_3.png-099a6c77056e3b1dd7bd273c8a658d9b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_3.png"
dest_files=["res://.godot/imported/idle_3.png-099a6c77056e3b1dd7bd273c8a658d9b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://phpesj4rib2g"
path="res://.godot/imported/idle_4.png-517eebba151509abeedc854fc8b07d2d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_4.png"
dest_files=["res://.godot/imported/idle_4.png-517eebba151509abeedc854fc8b07d2d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bkw4fnsgd15mx"
path="res://.godot/imported/idle_5.png-2f519c3ed49b4bdb01436b62ce43ba85.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_5.png"
dest_files=["res://.godot/imported/idle_5.png-2f519c3ed49b4bdb01436b62ce43ba85.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b8ossvjadlnm6"
path="res://.godot/imported/idle_6.png-9457e766a83053e5629aa1c79c03ae47.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/idle/idle_6.png"
dest_files=["res://.godot/imported/idle_6.png-9457e766a83053e5629aa1c79c03ae47.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dmwvtjtg66urw"
path="res://.godot/imported/take_hit_1.png-f48efe4f065de1115e78960e0ef8bc70.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_1.png"
dest_files=["res://.godot/imported/take_hit_1.png-f48efe4f065de1115e78960e0ef8bc70.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://73eht65fdqx4"
path="res://.godot/imported/take_hit_2.png-f4a7cf6c63cc01a4bb93c5375950de4c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_2.png"
dest_files=["res://.godot/imported/take_hit_2.png-f4a7cf6c63cc01a4bb93c5375950de4c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b066w3ab6a6x0"
path="res://.godot/imported/take_hit_3.png-d12f4cfd0939350ae1e8d8d91836765d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_3.png"
dest_files=["res://.godot/imported/take_hit_3.png-d12f4cfd0939350ae1e8d8d91836765d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b0kipnc2nnwpx"
path="res://.godot/imported/take_hit_4.png-d92992a997ed5e9764525344ddb1b7be.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_4.png"
dest_files=["res://.godot/imported/take_hit_4.png-d92992a997ed5e9764525344ddb1b7be.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://chw2ebfyfaxb7"
path="res://.godot/imported/take_hit_5.png-5d9ca7ff8ad717de803feabd3e1a4a3c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_5.png"
dest_files=["res://.godot/imported/take_hit_5.png-5d9ca7ff8ad717de803feabd3e1a4a3c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://4ca7bpl7y6ae"
path="res://.godot/imported/take_hit_6.png-3d747f7b155123a8305aaf84c30f0059.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_6.png"
dest_files=["res://.godot/imported/take_hit_6.png-3d747f7b155123a8305aaf84c30f0059.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cbe1x5gicqygo"
path="res://.godot/imported/take_hit_7.png-6686c124683f1ae4479aff9016b84a09.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/take_hit/take_hit_7.png"
dest_files=["res://.godot/imported/take_hit_7.png-6686c124683f1ae4479aff9016b84a09.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsqahj3bs5jm0"
path="res://.godot/imported/walk_1.png-17016ac79bac6c8eb3ee9ddd54ceca90.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/walk/walk_1.png"
dest_files=["res://.godot/imported/walk_1.png-17016ac79bac6c8eb3ee9ddd54ceca90.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://df458ip25vt1i"
path="res://.godot/imported/walk_10.png-2e534adf6988e0e2091ac8eb7db5260b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/walk/walk_10.png"
dest_files=["res://.godot/imported/walk_10.png-2e534adf6988e0e2091ac8eb7db5260b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dbcbli8v7esvg"
path="res://.godot/imported/walk_2.png-4efcd35889628a5c73a6be58cad65393.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/walk/walk_2.png"
dest_files=["res://.godot/imported/walk_2.png-4efcd35889628a5c73a6be58cad65393.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dffpsdq2316cw"
path="res://.godot/imported/walk_3.png-336814db8586fe74c3c2f8b84c80fc22.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/walk/walk_3.png"
dest_files=["res://.godot/imported/walk_3.png-336814db8586fe74c3c2f8b84c80fc22.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://byyf3d568vxa7"
path="res://.godot/imported/walk_4.png-972a930f70c8f16145a8b6f1599b8526.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Images/Bosses/Frost_Guardian_FREE_v1.0/PNG files/walk/walk_4.png"
dest_files=["res://.godot/imported/walk_4.png-972a930f70c8f16145a8b6f1599b8526.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Some files were not shown because too many files have changed in this diff Show More