diff --git a/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs new file mode 100644 index 000000000..c1c13b485 --- /dev/null +++ b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs @@ -0,0 +1,40 @@ +using Chickensoft.AutoInject; +using Chickensoft.Introspection; +using Godot; +using System.Linq; +using Zennysoft.Game.Ma; +using Zennysoft.Ma.Adapter; +using Zennysoft.Ma.Adapter.Entity; + +[Meta(typeof(IAutoNode)), Id("debug")] +public partial class DebugInfo : Control +{ + public override void _Notification(int what) => this.Notify(what); + + [Dependency] private IGame _game => this.DependOn(); + [Dependency] private IGameRepo _gameRepo => this.DependOn(); + [Dependency] private IMap _map => this.DependOn(); + [Dependency] private IPlayer _player => this.DependOn(); + + [Node] public Label MapName { get; set; } + [Node] public Label EnemyCount { get; set; } + [Node] public Label DeathCount { get; set; } + + public void OnResolved() + { + _map.FloorLoaded += _map_FloorLoaded; + _gameRepo.EnemyDied += _gameRepo_EnemyDied; + _player.PlayerDied += _player_PlayerDied; + DeathCount.Text = _game.QuestData.DeathCount.ToString(); + } + + private void _gameRepo_EnemyDied(IEnemy obj) => EnemyCount.Text = (EnemyCount.Text.ToInt() - 1).ToString(); + + private void _map_FloorLoaded() + { + MapName.Text = _map.CurrentFloor.SceneFilePath.GetFile().TrimSuffix(".tscn"); + EnemyCount.Text = _map.CurrentFloor.GetChild(0).GetChildren().OfType().Select(x => x.GetChildren().OfType()).Count().ToString(); + } + + private void _player_PlayerDied() => DeathCount.Text = _game.QuestData.DeathCount.ToString(); +} diff --git a/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs.uid b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs.uid new file mode 100644 index 000000000..e5a1adcda --- /dev/null +++ b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.cs.uid @@ -0,0 +1 @@ +uid://c4g3frcpt0h36 diff --git a/Zennysoft.Game.Ma/src/debug_info/DebugInfo.tscn b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.tscn new file mode 100644 index 000000000..68c9238e1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/debug_info/DebugInfo.tscn @@ -0,0 +1,82 @@ +[gd_scene load_steps=4 format=3 uid="uid://t22s2y1t8ktc"] + +[ext_resource type="Script" uid="uid://c4g3frcpt0h36" path="res://src/debug_info/DebugInfo.cs" id="1_6tk84"] +[ext_resource type="LabelSettings" uid="uid://b6f8ggy3ulonb" path="res://src/ui/label_settings/GeorgiaItalic.tres" id="1_i766g"] +[ext_resource type="Script" uid="uid://3fpuxsgdl8xe" path="res://src/utils/FpsCounter.cs" id="3_rco7p"] + +[node name="DebugInfo" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_6tk84") + +[node name="MarginContainer" type="MarginContainer" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 20 +theme_override_constants/margin_top = 20 +theme_override_constants/margin_right = 20 +theme_override_constants/margin_bottom = 20 + +[node name="VFlowContainer" type="VFlowContainer" parent="MarginContainer"] +layout_mode = 2 +alignment = 2 + +[node name="FPS" type="HBoxContainer" parent="MarginContainer/VFlowContainer"] +layout_mode = 2 + +[node name="FPSLabel" type="Label" parent="MarginContainer/VFlowContainer/FPS"] +layout_mode = 2 +text = "FPS:" +label_settings = ExtResource("1_i766g") + +[node name="FPSCounter" type="Label" parent="MarginContainer/VFlowContainer/FPS"] +layout_mode = 2 +label_settings = ExtResource("1_i766g") +script = ExtResource("3_rco7p") + +[node name="MapInfo" type="HBoxContainer" parent="MarginContainer/VFlowContainer"] +layout_mode = 2 + +[node name="Map Name Label" type="Label" parent="MarginContainer/VFlowContainer/MapInfo"] +layout_mode = 2 +text = "Map Name:" +label_settings = ExtResource("1_i766g") + +[node name="MapName" type="Label" parent="MarginContainer/VFlowContainer/MapInfo"] +unique_name_in_owner = true +layout_mode = 2 +label_settings = ExtResource("1_i766g") + +[node name="EnemyInfo" type="HBoxContainer" parent="MarginContainer/VFlowContainer"] +layout_mode = 2 + +[node name="Enemy Count Label" type="Label" parent="MarginContainer/VFlowContainer/EnemyInfo"] +layout_mode = 2 +text = "Number of enemies:" +label_settings = ExtResource("1_i766g") + +[node name="EnemyCount" type="Label" parent="MarginContainer/VFlowContainer/EnemyInfo"] +unique_name_in_owner = true +layout_mode = 2 +label_settings = ExtResource("1_i766g") + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VFlowContainer"] +layout_mode = 2 + +[node name="DeathCountLabel" type="Label" parent="MarginContainer/VFlowContainer/HBoxContainer"] +layout_mode = 2 +text = "Player Death Count:" +label_settings = ExtResource("1_i766g") + +[node name="DeathCount" type="Label" parent="MarginContainer/VFlowContainer/HBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +label_settings = ExtResource("1_i766g") diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png new file mode 100644 index 000000000..90eeda977 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png.import new file mode 100644 index 000000000..cbe48d995 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/3Dkubel.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj1psfba5bhup" +path.bptc="res://.godot/imported/3Dkubel.png-a18d215cb94179f4294d3437e869ace0.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/3Dkubel.png" +dest_files=["res://.godot/imported/3Dkubel.png-a18d215cb94179f4294d3437e869ace0.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png new file mode 100644 index 000000000..f0da92d26 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png.import new file mode 100644 index 000000000..96bfa14a4 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Air Sword.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n6lwh1cyv341" +path.bptc="res://.godot/imported/Air Sword.png-3fb721b7bcf300440568d8d397e2f08a.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Air Sword.png" +dest_files=["res://.godot/imported/Air Sword.png-3fb721b7bcf300440568d8d397e2f08a.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png new file mode 100644 index 000000000..2e48ec8c7 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png.import new file mode 100644 index 000000000..3edeab374 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Amrit Draught.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyulehmrydvlj" +path.bptc="res://.godot/imported/Amrit Draught.png-35b730b93b8eff4559eaa14144595d68.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Amrit Draught.png" +dest_files=["res://.godot/imported/Amrit Draught.png-35b730b93b8eff4559eaa14144595d68.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png new file mode 100644 index 000000000..5ce48afc4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png.import new file mode 100644 index 000000000..e99df0700 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Atoner's Adornments.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3vi6eudj6yko" +path.bptc="res://.godot/imported/Atoner\'s Adornments.png-3bce8c3275634ff56740f4832400641b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Atoner's Adornments.png" +dest_files=["res://.godot/imported/Atoner\\'s Adornments.png-3bce8c3275634ff56740f4832400641b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png new file mode 100644 index 000000000..ebfadf68a Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png.import new file mode 100644 index 000000000..4f3456543 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Black Egg.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0wgpatx70de4" +path.bptc="res://.godot/imported/Black Egg.png-5ce75c2cdf50ba9722cb9b894c446653.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Black Egg.png" +dest_files=["res://.godot/imported/Black Egg.png-5ce75c2cdf50ba9722cb9b894c446653.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png new file mode 100644 index 000000000..3c61bde4d Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png.import new file mode 100644 index 000000000..d8d3a20be --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Blue Dice.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj5xmrdeubq8j" +path.bptc="res://.godot/imported/Blue Dice.png-4047911bc3a11c8cc2e1275a041789a5.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Blue Dice.png" +dest_files=["res://.godot/imported/Blue Dice.png-4047911bc3a11c8cc2e1275a041789a5.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png new file mode 100644 index 000000000..a0602960e Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png.import new file mode 100644 index 000000000..8140e1738 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Devic Balance.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cua5drksphcuw" +path.bptc="res://.godot/imported/Devic Balance.png-80791b3a36b4aa5ed2a8b134bc82bf2a.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Devic Balance.png" +dest_files=["res://.godot/imported/Devic Balance.png-80791b3a36b4aa5ed2a8b134bc82bf2a.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png new file mode 100644 index 000000000..24bcdf1ab Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png.import new file mode 100644 index 000000000..2ce1b1d7f --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Divinity Recall.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c372a0necdqs0" +path.bptc="res://.godot/imported/Divinity Recall.png-ef70f51dd72cbdd5c30cffaa2eea94a9.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Divinity Recall.png" +dest_files=["res://.godot/imported/Divinity Recall.png-ef70f51dd72cbdd5c30cffaa2eea94a9.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png new file mode 100644 index 000000000..936f39f6f Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png.import new file mode 100644 index 000000000..209c38f34 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Empty Box.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0oixkrxy542r" +path.bptc="res://.godot/imported/Empty Box.png-2c89968b026eec73d47d3563e0fb4018.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Empty Box.png" +dest_files=["res://.godot/imported/Empty Box.png-2c89968b026eec73d47d3563e0fb4018.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png new file mode 100644 index 000000000..8443d891e Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png.import new file mode 100644 index 000000000..8a01c777c --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Glue Jar.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pd3pm3v08sfl" +path.bptc="res://.godot/imported/Glue Jar.png-4e7efb00a0b1619093f937a2d452992f.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Glue Jar.png" +dest_files=["res://.godot/imported/Glue Jar.png-4e7efb00a0b1619093f937a2d452992f.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png new file mode 100644 index 000000000..a94a353ce Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png.import new file mode 100644 index 000000000..c9fb506a1 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Dimension.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://slvcnyc3mbqt" +path.bptc="res://.godot/imported/Gospel of Dimension.png-b656634601758e712807960ede3e83f9.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Gospel of Dimension.png" +dest_files=["res://.godot/imported/Gospel of Dimension.png-b656634601758e712807960ede3e83f9.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png new file mode 100644 index 000000000..4e4b09b0b Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png.import new file mode 100644 index 000000000..c3fc48950 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Gospel of Paths.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bybhtaq06p0yk" +path.bptc="res://.godot/imported/Gospel of Paths.png-ecb9c11664bb47fc2583894d52545cd3.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Gospel of Paths.png" +dest_files=["res://.godot/imported/Gospel of Paths.png-ecb9c11664bb47fc2583894d52545cd3.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png new file mode 100644 index 000000000..ba11a08c8 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png.import new file mode 100644 index 000000000..eb458e04e --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Green Dice.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs4m7xr2jfhf2" +path.bptc="res://.godot/imported/Green Dice.png-d035a0e3c8bff483947f9a42d5cf83d1.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Green Dice.png" +dest_files=["res://.godot/imported/Green Dice.png-d035a0e3c8bff483947f9a42d5cf83d1.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png new file mode 100644 index 000000000..64a7ccc01 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png.import new file mode 100644 index 000000000..3c9c1e6cf --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Haoma Draught.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmk4hb7h4qvx2" +path.bptc="res://.godot/imported/Haoma Draught.png-59aaebbfd5505f382affc2c1c54f3e28.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Haoma Draught.png" +dest_files=["res://.godot/imported/Haoma Draught.png-59aaebbfd5505f382affc2c1c54f3e28.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png new file mode 100644 index 000000000..6e620ba7e Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png.import new file mode 100644 index 000000000..dbc7a3611 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Heaven's Rebellion.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clcnicpji56vc" +path.bptc="res://.godot/imported/Heaven\'s Rebellion.png-10a45986b8a94b2ee6a164b4cb635b92.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Heaven's Rebellion.png" +dest_files=["res://.godot/imported/Heaven\\'s Rebellion.png-10a45986b8a94b2ee6a164b4cb635b92.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png new file mode 100644 index 000000000..65ef5a663 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png.import new file mode 100644 index 000000000..f16ef1d56 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/HolyArmor2.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsgrvkq55p2xt" +path.bptc="res://.godot/imported/HolyArmor2.png-a16e204bd19ced0cc086185aa5c6b4a8.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/HolyArmor2.png" +dest_files=["res://.godot/imported/HolyArmor2.png-a16e204bd19ced0cc086185aa5c6b4a8.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png new file mode 100644 index 000000000..18a55dcfc Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png.import new file mode 100644 index 000000000..c933e867a --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Jar.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdxe24nfvn8qo" +path.bptc="res://.godot/imported/Jar.png-9ad86c552bdbd2ca0c6b8ee92317692b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Jar.png" +dest_files=["res://.godot/imported/Jar.png-9ad86c552bdbd2ca0c6b8ee92317692b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png new file mode 100644 index 000000000..a866485e4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png.import new file mode 100644 index 000000000..9a1be7a3b --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Katar.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpq1ryk8n87xr" +path.bptc="res://.godot/imported/Katar.png-f80debce1f8ad813196ab30e594b3968.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Katar.png" +dest_files=["res://.godot/imported/Katar.png-f80debce1f8ad813196ab30e594b3968.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png new file mode 100644 index 000000000..95380415c Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png.import new file mode 100644 index 000000000..1fa51efe9 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Kyuuketsuki.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cft1sn3ttmqkg" +path.bptc="res://.godot/imported/Kyuuketsuki.png-e3b7774ccca1e6c62ffb798529342f4b.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Kyuuketsuki.png" +dest_files=["res://.godot/imported/Kyuuketsuki.png-e3b7774ccca1e6c62ffb798529342f4b.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png new file mode 100644 index 000000000..8761ca7ee Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png.import new file mode 100644 index 000000000..dbb971d10 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Love Judgement.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djmaermmn6ehi" +path.bptc="res://.godot/imported/Love Judgement.png-4da79c57fa4fc1600e3d6dab48bf13df.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Love Judgement.png" +dest_files=["res://.godot/imported/Love Judgement.png-4da79c57fa4fc1600e3d6dab48bf13df.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png new file mode 100644 index 000000000..453025553 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png.import new file mode 100644 index 000000000..c43f24d74 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Metal Dice.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dritnstkmbugq" +path.bptc="res://.godot/imported/Metal Dice.png-66665129ca1dc12e631e08b684392163.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Metal Dice.png" +dest_files=["res://.godot/imported/Metal Dice.png-66665129ca1dc12e631e08b684392163.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png new file mode 100644 index 000000000..d3e2c01a2 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png.import new file mode 100644 index 000000000..57ea24336 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Nebula Chain.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3erkuo1fk0c4" +path.bptc="res://.godot/imported/Nebula Chain.png-bc04c678960d067a826e90635f9c39ab.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Nebula Chain.png" +dest_files=["res://.godot/imported/Nebula Chain.png-bc04c678960d067a826e90635f9c39ab.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png new file mode 100644 index 000000000..95c643a51 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png.import new file mode 100644 index 000000000..340612f9f --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Red Dice.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ie3bknrcpbw" +path.bptc="res://.godot/imported/Red Dice.png-614e67097ac2c48c2ffe4b59f19a35f8.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Red Dice.png" +dest_files=["res://.godot/imported/Red Dice.png-614e67097ac2c48c2ffe4b59f19a35f8.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png new file mode 100644 index 000000000..093974119 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png.import new file mode 100644 index 000000000..fb4de7d4f --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Rusted Sword.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn3mew6saujmq" +path.bptc="res://.godot/imported/Rusted Sword.png-2ab13a21d5ffb46783c81d5ce0040849.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Rusted Sword.png" +dest_files=["res://.godot/imported/Rusted Sword.png-2ab13a21d5ffb46783c81d5ce0040849.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png new file mode 100644 index 000000000..852c17c5d Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png.import new file mode 100644 index 000000000..82f2e7fcf --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Sine Morph.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3i21sj5kbya0" +path.bptc="res://.godot/imported/Sine Morph.png-83a28ce604b213c558ffbca37787a128.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Sine Morph.png" +dest_files=["res://.godot/imported/Sine Morph.png-83a28ce604b213c558ffbca37787a128.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png new file mode 100644 index 000000000..9631c7833 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png.import new file mode 100644 index 000000000..c36427f9d --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Wood Armor.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clmtbjmwemepv" +path.bptc="res://.godot/imported/Wood Armor.png-8a319a82922562d4b57962dd84759331.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Wood Armor.png" +dest_files=["res://.godot/imported/Wood Armor.png-8a319a82922562d4b57962dd84759331.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png new file mode 100644 index 000000000..3e0c965d4 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png.import new file mode 100644 index 000000000..aadd04c55 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/Ydunic Draught.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn1uymew0wwoj" +path.bptc="res://.godot/imported/Ydunic Draught.png-7e2a389f9a6dcdc17666096aa2e79f64.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/Ydunic Draught.png" +dest_files=["res://.godot/imported/Ydunic Draught.png-7e2a389f9a6dcdc17666096aa2e79f64.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png new file mode 100644 index 000000000..c935b3767 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png.import new file mode 100644 index 000000000..50e5486e7 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/ancient medicine.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dayra4hcppa3x" +path.bptc="res://.godot/imported/ancient medicine.png-b41560cee26578e2e61e4540efc2104a.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/ancient medicine.png" +dest_files=["res://.godot/imported/ancient medicine.png-b41560cee26578e2e61e4540efc2104a.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png new file mode 100644 index 000000000..199f968e3 Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png.import new file mode 100644 index 000000000..5ca199184 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/kugloj.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgt30ril4h6pf" +path.bptc="res://.godot/imported/kugloj.png-9f3f4535d0256a7e257234de1e7c6bda.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/kugloj.png" +dest_files=["res://.godot/imported/kugloj.png-9f3f4535d0256a7e257234de1e7c6bda.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png b/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png new file mode 100644 index 000000000..6d23285ca Binary files /dev/null and b/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png differ diff --git a/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png.import b/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png.import new file mode 100644 index 000000000..077457997 --- /dev/null +++ b/Zennysoft.Game.Ma/src/items/3D Render Icons/yellowd.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcad552vcrosw" +path.bptc="res://.godot/imported/yellowd.png-5badfa368c6ca6602e9b798b650e9a75.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/items/3D Render Icons/yellowd.png" +dest_files=["res://.godot/imported/yellowd.png-5badfa368c6ca6602e9b798b650e9a75.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/Zennysoft.Game.Ma/src/items/weapons/textures/RONDO.PNG.import b/Zennysoft.Game.Ma/src/items/weapons/textures/RONDO.PNG.import index 0c842ad38..947fcd210 100644 --- a/Zennysoft.Game.Ma/src/items/weapons/textures/RONDO.PNG.import +++ b/Zennysoft.Game.Ma/src/items/weapons/textures/RONDO.PNG.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://c63uufq63qpuy" -path.bptc="res://.godot/imported/Rondo.png-57553b850a093da6dba43a1e1947fcce.bptc.ctex" +path.bptc="res://.godot/imported/RONDO.PNG-77b50e9afaf9eb46f5672e079a5f50bf.bptc.ctex" metadata={ "imported_formats": ["s3tc_bptc"], "vram_texture": true @@ -11,8 +11,8 @@ metadata={ [deps] -source_file="res://src/items/weapons/textures/Rondo.png" -dest_files=["res://.godot/imported/Rondo.png-57553b850a093da6dba43a1e1947fcce.bptc.ctex"] +source_file="res://src/items/weapons/textures/RONDO.PNG" +dest_files=["res://.godot/imported/RONDO.PNG-77b50e9afaf9eb46f5672e079a5f50bf.bptc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import index 32e69d626..495df45d7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cp0er3xxxjkr5" -path="res://.godot/imported/A2-Puer_AREA_2_MAIN_222STONE.png-992459ef9849c39922a9b9e0c7774a4a.ctex" +path="res://.godot/imported/a2-puer_AREA_2_MAIN_222STONE.png-139f243ac630853348798dfe584da1e0.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_222STONE.png" -dest_files=["res://.godot/imported/A2-Puer_AREA_2_MAIN_222STONE.png-992459ef9849c39922a9b9e0c7774a4a.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_AREA_2_MAIN_222STONE.png" +dest_files=["res://.godot/imported/a2-puer_AREA_2_MAIN_222STONE.png-139f243ac630853348798dfe584da1e0.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import index 6b7d90a6d..21e6e0d98 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://5r16swvuqjjg" -path="res://.godot/imported/A2-Puer_AREA_2_MAIN_STONE.png-2267bd7e464cdc2e03c8954de01941bf.ctex" +path="res://.godot/imported/a2-puer_AREA_2_MAIN_STONE.png-986249227e569ea1e40b4825b7f05c47.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_AREA_2_MAIN_STONE.png" -dest_files=["res://.godot/imported/A2-Puer_AREA_2_MAIN_STONE.png-2267bd7e464cdc2e03c8954de01941bf.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_AREA_2_MAIN_STONE.png" +dest_files=["res://.godot/imported/a2-puer_AREA_2_MAIN_STONE.png-986249227e569ea1e40b4825b7f05c47.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import index e762e21b3..04bb9e3d9 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cvnpxln2mmtkp" -path="res://.godot/imported/A2-Puer_COLUMN_WHITE.png-18037c22b966bb159d05cb7acac1bc53.ctex" +path="res://.godot/imported/a2-puer_COLUMN_WHITE.png-0b80d510851319464b2ef729d8868892.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_COLUMN_WHITE.png" -dest_files=["res://.godot/imported/A2-Puer_COLUMN_WHITE.png-18037c22b966bb159d05cb7acac1bc53.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_COLUMN_WHITE.png" +dest_files=["res://.godot/imported/a2-puer_COLUMN_WHITE.png-0b80d510851319464b2ef729d8868892.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import index 9e3842f74..180e28565 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://tjtjbktl51kd" -path="res://.godot/imported/A2-Puer_GREENBIT.png-40a9ca6a0efc569a5f329f19b3c3e572.ctex" +path="res://.godot/imported/a2-puer_GREENBIT.png-e1ed395f917a2fe57ed6288185af0729.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_GREENBIT.png" -dest_files=["res://.godot/imported/A2-Puer_GREENBIT.png-40a9ca6a0efc569a5f329f19b3c3e572.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_GREENBIT.png" +dest_files=["res://.godot/imported/a2-puer_GREENBIT.png-e1ed395f917a2fe57ed6288185af0729.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import index 9338c9fcb..3ebf2724e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://dqfdyguq83bhs" -path="res://.godot/imported/A2-Puer_M13_14.png-e781478f15895763a566a64ff37db311.ctex" +path="res://.godot/imported/a2-puer_M13_14.png-ed8b29b0af1c2b973bfaee62e57cab14.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_14.png" -dest_files=["res://.godot/imported/A2-Puer_M13_14.png-e781478f15895763a566a64ff37db311.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_M13_14.png" +dest_files=["res://.godot/imported/a2-puer_M13_14.png-ed8b29b0af1c2b973bfaee62e57cab14.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import index 80697846d..4508979cd 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://dorqwrqy03rim" -path="res://.godot/imported/A2-Puer_M13_49.png-44faadb5ae300e9ecea145cfe1949536.ctex" +path="res://.godot/imported/a2-puer_M13_49.png-86429b5a3cd80a9159f32ded99a631bc.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_M13_49.png" -dest_files=["res://.godot/imported/A2-Puer_M13_49.png-44faadb5ae300e9ecea145cfe1949536.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_M13_49.png" +dest_files=["res://.godot/imported/a2-puer_M13_49.png-86429b5a3cd80a9159f32ded99a631bc.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import index 1d382c04e..db04979bf 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://nl3bwenfa8fi" -path="res://.godot/imported/A2-Puer_RUBBLE_1.png-72d7ff861d1df58d800502546da8d607.ctex" +path="res://.godot/imported/a2-puer_RUBBLE_1.png-c7185e2aad2613007d1951f1515ef882.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_RUBBLE_1.png" -dest_files=["res://.godot/imported/A2-Puer_RUBBLE_1.png-72d7ff861d1df58d800502546da8d607.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_RUBBLE_1.png" +dest_files=["res://.godot/imported/a2-puer_RUBBLE_1.png-c7185e2aad2613007d1951f1515ef882.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import index 09c9a2eaa..f0fbaffea 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://0p6suo7fpxum" -path="res://.godot/imported/A2-Puer_STUCCO_DECAL_BIG.png-015d9f8dd06372231a1f422979d3604e.ctex" +path="res://.godot/imported/a2-puer_STUCCO_DECAL_BIG.png-882b477f490f6ddbf5bffb3a6f8904e1.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_STUCCO_DECAL_BIG.png" -dest_files=["res://.godot/imported/A2-Puer_STUCCO_DECAL_BIG.png-015d9f8dd06372231a1f422979d3604e.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_STUCCO_DECAL_BIG.png" +dest_files=["res://.godot/imported/a2-puer_STUCCO_DECAL_BIG.png-882b477f490f6ddbf5bffb3a6f8904e1.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import index 24318b1e7..199806321 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://ct3mkni0v0y3g" -path="res://.godot/imported/A2-Puer_Tile 4.png-0cfd085ec5fcea35eb2d1373e4717f77.ctex" +path="res://.godot/imported/a2-puer_Tile 4.png-9d089a32db3fc38a0c5dee6cdb6d3495.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_Tile 4.png" -dest_files=["res://.godot/imported/A2-Puer_Tile 4.png-0cfd085ec5fcea35eb2d1373e4717f77.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_Tile 4.png" +dest_files=["res://.godot/imported/a2-puer_Tile 4.png-9d089a32db3fc38a0c5dee6cdb6d3495.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import index a2a510b2b..64b96d318 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://b40fbcriycpp5" -path="res://.godot/imported/A2-Puer_imag2esnormal.jpg-be023c8af9ff59eedfb3ede232c75195.ctex" +path="res://.godot/imported/a2-puer_imag2esnormal.jpg-d6e063b2785344af34fa3bb45d47aa2f.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_imag2esnormal.jpg" -dest_files=["res://.godot/imported/A2-Puer_imag2esnormal.jpg-be023c8af9ff59eedfb3ede232c75195.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_imag2esnormal.jpg" +dest_files=["res://.godot/imported/a2-puer_imag2esnormal.jpg-d6e063b2785344af34fa3bb45d47aa2f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import index 98a06282f..b8a78e4ab 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://b25r6gysyhu3e" -path="res://.godot/imported/A2-Puer_inner_rock2.png-7c99975de214e5dddd3507f87212b910.ctex" +path="res://.godot/imported/a2-puer_inner_rock2.png-943622742770f7b55d1e40645d07d057.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_inner_rock2.png" -dest_files=["res://.godot/imported/A2-Puer_inner_rock2.png-7c99975de214e5dddd3507f87212b910.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_inner_rock2.png" +dest_files=["res://.godot/imported/a2-puer_inner_rock2.png-943622742770f7b55d1e40645d07d057.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import index 652b45073..c74c8b3f7 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://cw4hq3kofjowa" -path="res://.godot/imported/A2-Puer_lime_hand_relief.png-825857ea33249fe0361c829ba37bbfdb.ctex" +path="res://.godot/imported/a2-puer_lime_hand_relief.png-85b73e808337e8b8841453cbda0e78cd.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_lime_hand_relief.png" -dest_files=["res://.godot/imported/A2-Puer_lime_hand_relief.png-825857ea33249fe0361c829ba37bbfdb.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_lime_hand_relief.png" +dest_files=["res://.godot/imported/a2-puer_lime_hand_relief.png-85b73e808337e8b8841453cbda0e78cd.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import index daa0c8454..225a80ba0 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://bqrsde28o867s" -path="res://.godot/imported/A2-Puer_mother_GREEN.png-ba1f3d21981ed19fc5cc87868e04808c.ctex" +path="res://.godot/imported/a2-puer_mother_GREEN.png-7bb7d8dd57027953ba1e08ed0c256c8b.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_mother_GREEN.png" -dest_files=["res://.godot/imported/A2-Puer_mother_GREEN.png-ba1f3d21981ed19fc5cc87868e04808c.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_mother_GREEN.png" +dest_files=["res://.godot/imported/a2-puer_mother_GREEN.png-7bb7d8dd57027953ba1e08ed0c256c8b.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import index 54793d5e9..d34c69948 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import +++ b/Zennysoft.Game.Ma/src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png.import @@ -3,7 +3,7 @@ importer="texture" type="CompressedTexture2D" uid="uid://4aq3a26dliyg" -path="res://.godot/imported/A2-Puer_swirled_column _AREA222.png-4842b180cffdbc0274ecb9cbbbbc8221.ctex" +path="res://.godot/imported/a2-puer_swirled_column _AREA222.png-6f90c188eae5b7e81110f39984d5d43f.ctex" metadata={ "vram_texture": false } @@ -13,8 +13,8 @@ generator_parameters={ [deps] -source_file="res://src/map/dungeon/models/Area 2/Puer/A2-Puer_swirled_column _AREA222.png" -dest_files=["res://.godot/imported/A2-Puer_swirled_column _AREA222.png-4842b180cffdbc0274ecb9cbbbbc8221.ctex"] +source_file="res://src/map/dungeon/models/Area 2/Puer/a2-puer_swirled_column _AREA222.png" +dest_files=["res://.godot/imported/a2-puer_swirled_column _AREA222.png-6f90c188eae5b7e81110f39984d5d43f.ctex"] [params] diff --git a/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png b/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png new file mode 100644 index 000000000..308fbfc2a Binary files /dev/null and b/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png differ diff --git a/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png.import b/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png.import new file mode 100644 index 000000000..8e1399e6c --- /dev/null +++ b/Zennysoft.Game.Ma/src/ui/UI Front with Transparency.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnt8myee0ju3v" +path.bptc="res://.godot/imported/UI Front with Transparency.png-acd09c78177a3db2b354b120958077dd.bptc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} + +[deps] + +source_file="res://src/ui/UI Front with Transparency.png" +dest_files=["res://.godot/imported/UI Front with Transparency.png-acd09c78177a3db2b354b120958077dd.bptc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=true +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0